如何使用js实现点击一个按钮之后在原来的页面上弹出一个注册类似的页面,就是类似alert的弹出

JavaScript015

如何使用js实现点击一个按钮之后在原来的页面上弹出一个注册类似的页面,就是类似alert的弹出,第1张

/**

* 显示一个弹出界面

*

* @param url

*界面地址,可以使jsp,页也可以是action

* @param params

*需要传递的参数

* @param titleDesc

*页面头描述

* @param width

*页面宽度

* @param height

*页面高度

* @param parentView

*页面所在的父页面

* @param callback

*回调函数

*/

function showPage(url, params, titleDesc, width, height, parentView, callback) {

var _win = this

if (!parentView) {

parentView = document

}

lockScreen_showPage(parentView)

var bordercolor = "#336699"// 提示窗口的边框颜色

var showPageDiv = parentView.createElement("div")

showPageDiv.setAttribute("id", "showPageDiv")

showPageDiv.setAttribute("align", "center")

showPageDiv.style.background = "white"

// showPageDiv.style.border = "1px solid " + bordercolor

showPageDiv.style.position = "absolute"

showPageDiv.style.left = "50%"

showPageDiv.style.top = "30%"

showPageDiv.style.font = "12px/1.6em Verdana, Geneva, Arial, Helvetica, sans-serif"

showPageDiv.style.marginLeft = "-225px"

showPageDiv.style.marginTop = -75 + parentView.documentElement.scrollTop + "px"

showPageDiv.style.width = width + "px"

showPageDiv.style.height = height + "px"

showPageDiv.style.textAlign = "center"

showPageDiv.style.lineHeight = "25px"

showPageDiv.style.zIndex = "10031"

var title = parentView.createElement("h4")

title.setAttribute("id", "showPageTitle")

title.setAttribute("align", "right")

title.style.margin = "0"

title.style.padding = "3px"

// title.style.background = bordercolor

title.style.filter = "progid:DXImageTransform.Microsoft.Alpha(startX=20, startY=20, finishX=100, finishY=100,style=1,opacity=75,finishOpacity=100)"

title.style.opacity = "0.75"

// title.style.border = "1px solid " + bordercolor

title.style.height = "18px"

title.style.font = "12px Verdana, Geneva, Arial, Helvetica, sans-serif"

// title.style.color = "white"

title.style.cursor = "pointer"

title.title = titleDesc

title.innerHTML = "<table border='0' width='100%'><tr><td width='85%' align='left'><b id='showPageTitleDesc'>"

+ titleDesc + "</b></td><td id='showPageClose' width='15%' >关闭</td></tr></table>"

var pageBody = parentView.createElement("div")

pageBody.setAttribute("id", "pageBody")

pageBody.style.width = width + "px"

if (navigator.userAgent.indexOf("MSIE 6.0") >0) {// IE6

pageBody.style.height = height - 26 + "px"

} else {// IE8

pageBody.style.height = height - 25 + "px"

}

pageBody.style.position = "absolute"

pageBody.style.left = "0px"

$.post(url, params, function(data) {

showPageDiv.appendChild(title)

showPageDiv.appendChild(pageBody)

parentView.body.appendChild(showPageDiv)

parentView.getElementById("showPageClose").onclick = function() {

closeShowPage(parentView)

if (callback) {

callback.call(_win)

}

}

$("#pageBody").html(data)

})

}

试试调用这个方法

<script type="text/javascript">

function check(){ //自定义函数名字

if(confirm("用户注册信息")){

window.open("页面地址")

}

}

</script>

在保存按钮的标签内 调用Onclick事件调用自定义函数 Onclick="check()"

如果是新窗口,那么在新窗口中不能对原窗口进行操作的,因为,这是两个没有“父子”关系的页面。如果非要这么做的话,只能通过js来对浏览器进行操作了。

另外,在弹出新窗口后,原窗口做一些信息的立即变动,还是可以通过ajax实现的。