通过 window.showModalDialog传的数据,过去之后#后面的内容不显示是什么原因啊

2024-12-25 12:19:50
推荐回答(1个)
回答1:

修改a.html的openstr()方法,改为以下

function openstr()
{
ReturnValue=window.showModalDialog("b.html",window,"dialogWidth=510px;dialogHeight=150px;status=no");
if(ReturnValue && ReturnValue!="")
{
oOption = document.createElement('OPTION');
oOption.text=ReturnValue;
oOption.value=ReturnValue;
document.all.txtselect.add(oOption);
}
}