作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
$("#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/
我是一名优秀的程序员,十分优秀!