jsbox脚本小良 js页面的弹框怎么关闭啊?
js页面的弹框怎么关闭啊?1、单纯的关闭window.opener.location.reload() //刷新父窗口中的网页window.close()//关闭当前窗窗口2、提交后关闭functio
js页面的弹框怎么关闭啊?
1、单纯的关闭window.opener.location.reload() //刷新父窗口中的网页window.close()//关闭当前窗窗口2、提交后关闭function save(){document.getElementById("pointsform").submit()alert("保存成功")window.opener.document.getElementById("cmd").value="query"window.opener.document.getElementById("form的id").submit()//提交window.close() //关闭当前窗口}