彷中华英才网页面点击地区弹出选择页面反回选择值如何实现
------解决方案--------------------------------------------------------
没什么特别的啊,CSS+div
------解决方案--------------------------------------------------------
弹出div
或jwindow
http://topic.csdn.net/u/20091203/17/a0b75bb1-0551-4f98-9d29-f14ff3e5d40d
------解决方案--------------------------------------------------------
弹出一个div层
当选择点击确定后把选择的值赋给父页面的控件
------解决方案--------------------------------------------------------
- JScript code
var result = showModalDialog("b2.htm","dialogWidth:270px;dialogHeight:140px;status:'no'"); window.returnValue=”aaa” //返回aaa,可直接从表单里获取数据如document.all.textfield.value; window.close(); //关闭模态窗口
------解决方案--------------------------------------------------------
弹出模态对话框窗体,弹出子页面
- HTML code
# function openWindow(divIndex) { var width = 550; var height = 450; var url = "child.aspx?divIndex=" + divIndex; var returnVal; returnVal = window.showModalDialog(url, window, 'dialogWidth=' + width + 'px;dialogHeight=' + height + 'px;resizable=no;help=no;center=yes;status=no;scroll=no;edge=sunken'); if (returnVal) //当直接点模态窗体的X关闭的时候不刷新主页面 {// jquery局部更新 $("#content div").eq(divIndex).load("AdminColumnHandler.ashx?" + returnVal + "&randomFlag=" +Math.random()); } }