gpt4 book ai didi

javascript - 如何在 Jquery 对话框中设置内容

转载 作者:太空狗 更新时间:2023-10-29 13:57:08 26 4
gpt4 key购买 nike

$("#note_content").dialog({
title: "Note",
modal: true,
width:'auto',
height:'auto',
resizable:false,

open: function(){
var note_text = $('#note_content').attr('note_text');
}
}

在我的代码中,我尝试将 note_text 设置为对话框的内容,知道我该怎么做吗?

最佳答案

你可以试试这个:DEMO

var SplitText = "Title"
var $dialog = $('<div></div>')
.html(SplitText )
.dialog({
height: 500,
width: 600,
title: 'Title'});

$dialog.dialog('open');

$dialog.html('Some text');

关于javascript - 如何在 Jquery 对话框中设置内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10362295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com