有一個頁面transaction.htmljQuery的對話框中打開另一個頁面
如何在另一個頁面彈出打開這個頁面說show_transactions.html在一個jQuery對話框
$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
謝謝..
所以你打開一個彈出窗口,然後在彈出窗口中打開一個jQuery UI對話框?或者你是否將show_transactions加載到jQuery對話框中? – Zack 2010-05-03 05:42:59
不,顯示transactiona是一個正常頁面,我試圖打開一個彈出窗口 – Hulk 2010-05-03 05:50:20