0
我試過modelpopup
,但它不起作用。任何人都可以給我一個簡單的例子嗎?asp.net中的modelpopup示例
我試過modelpopup
,但它不起作用。任何人都可以給我一個簡單的例子嗎?asp.net中的modelpopup示例
function showList()
{
var return_value = window.showModalDialog(url, arguments, options);
if (return_value)
{
document.getElementById('A').value = return_value.A;
document.getElementById('B').value = return_value.B;
}
}
來自內部對話
function makeSelection(a, b)
{
window.returnValue = { A: a, B: b };
window.close();
}