对话框打开正常,但没有表格标签,我也看不到任何错误,所以我可以理清什么是错的。
function CreateDialog(data){
$( "#dialog-form" ).dialog({
autoOpen: true,
height: 300,
width: 350,
modal: true,
open: function() {
jQuery('dialog-form').append('<table><tr>');
jQuery.each(data, function(key, value) {
jQuery('dialog-form').append("<td>"+value+"</td>");
});
jQuery('dialog-form').append('</tr></table>')
},
Cancel: function() {
$( this ).dialog( "close" );
}
});
}
答案 0 :(得分:3)
尝试改变:
jQuery('dialog-form')
为:
jQuery('#dialog-form')
您在这里找不到#
定位id
。