打开模式对话框
var str = showModalDialog("HTMLPage.htm?temp="+Math.round(Math.random()*10000), this.id, "dialogHeight=200,dialogWidth=200,dialogLeft=100,dialogTop=400,scroll=no");然后HTMLPage.htm页面
 window.onload = function() {
if (window.dialogArguments != null) {
var value = window.dialogArguments;
alert(value);//能够打印出来
$("lblUser").value = value;
} else { alert("no"); }
}function $(obj){
   return document.getElementById(obj);
}问题就是怎么不能赋值 <label id="lblUser"></label> 这个lblUser标签
还有一个问题 为撒模式窗体有时对模式窗体没作用?