js弹出窗口
想做一个类似百度登陆那种效果的弹窗,搜到很多结果,在新建的jsp中使用,可以弹出窗口,但是把这段代码加到项目原有的页面里面就不能弹窗了,项目原本的页面包含很多JS,css,用的是struts标签,希望大家指点下,是哪方面的错误导致新加入的js不发生效果
这是那个例子
HTML code
script language="javascript">
function show(){
id1.style.height=window.screen.height+"px";
id1.style.width=window.screen.width+"px";
id1.style.display='block';
id2.style.display='block'
}
function hide(){
id1.style.display='none'
id2.style.display='none'
}
</script>
HTML code
<div id="id2" >
这里可以放内容,或者添加div用innerhtml进行添加内容就可以了
<br/>
<input name="Button1" type="button" value="button" onclick="hide()"/>
<input type="text">
</div>
<div id="id1"> 123</div>
<button onclick="show()" class="BUTTON">修改</button>
------解决方案--------------------id1.style.height=window.screen.height+"px";
id1.style.width=window.screen.width+"px";
这样写不需要加‘px’吧
------解决方案--------------------lz的问题正是奇怪。。。
------解决方案-------------------- document.getElementById("id2").style.height=window.screen.height;
document.getElementById("id2").style.width=window.screen.width;
你这么写这两句就对了
------解决方案--------------------啊,我是来接分的,LZ解决了,说下解决办法吧
------解决方案--------------------等待解决方法。。。LZ说一下吧
------解决方案--------------------楼主 你写的方法很不规范啊。少了很多“;”啊。我原来因为js方法里少了很多分号方法执行不了,是不是这个原因啊。 呵呵。
------解决方案--------------------分呢。。。