window.open基本语法:
window.open(pageURL,name,parameters)
其中:
pageURL 为子窗口路径
name 为子窗口句柄
parameters 为窗口参数(各参数用逗号分隔)
示例:
<SCRIPT>
<!--
window.open ('page.html','newwindow','height=100,width=400,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')
window.showModalDialog使用方法:
vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])
vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])
怎么修改js alert弹框样式方法如下:
覆盖window.alert函数,或者直接通过alert的原型来覆盖;
原理:alert 属于window 的函数,每个函数都有原型对象prototype ,只需要修改window.alert的原型对象即可改变原生alert的样子;
代码如下
window.alert.prototype = function(msg){
//some code here ,怎么改都行
alert('消息:'+msg)
}
<div id="showId">显示的对话框</div><span id="clickDiv">点击</span>
相信给showId加上浮动,你应该能搞定,然后就是JS了,
jQuery
jQuery("#clickDiv").click(function(){ //点击clickDiv
jQuery("#showId").show()//显示showId
setTimeout(jQuery("#showId").hide(), 3000)//3秒后关闭showId
})
你可以试试!我没测试,不过这个很简单,你把代码看下应该就会明白了!