有一个页面作为transaction.html
如何在另一个页面的弹出窗口中打开此页面在 jquery 对话框中说 show_transactions.html
$dialog.html() //open transaction.html in this dialog
.dialog({
autoOpen: true,
position: 'center' ,
title: 'EDIT',
draggable: false,
width : 300,
height : 40,
resizable : false,
modal : true,
});
alert('here');
$dialog.dialog('open');
此代码存在于 show_transactions.html
谢谢..