我在将值传递到我的对话框中时遇到了很大的问题。我设法把它作为标题。这个值是我计划在查询中使用的 ID,它将获取对话框的内容。如何使用此值在对话框中的屏幕上打印(并在我的查询中使用)这是我填充 .title 的方式:
function openDialog1() { // called by the inner iframe
$('#dialog1').dialog({
show: "fold",
hide: "explode",
width: 500,
height: 500,
title: $('#dialog1').data('v'),
modal: true,
buttons: {
Close: function () {
$(this).dialog("close");
}
}
});
}
在这里,我想使用很好地显示为我的标题的值:
<div id="dialog1" >
the id is ??? ...
</div>
先感谢您