我已经尝试了modelpopup
,但它无效。有人可以给我一个简单的例子吗?
答案 0 :(得分:1)
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();
}