谁有在showModalDialog打开的窗口中使用treeview控件选择人员,并返回人员id和name给父窗口的例子?急用啊,谢谢!!!最好是JavaScript的
http://www.cnblogs.com/downmoon/archive/2009/09/08/1562275.html
可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:
test_parent.html
<script>
str =window.showModalDialog("test.htm",,"dialogWidth=200px;dialogHeight=100px");
alert(str);
</script>
test_child.htm
<script>
window.returnValue="/";
</script>