问题描述
- 请教各位懂xhtml的大神
-
function openwindow(){
window.open("newwindow","图片","toolbars=0,scrollbars=0,location=0,
statusbars=0,menubars=0,resizable=0");
}这段javascript是用html的格式写的,请教各位大神如何用xhtml的格式写这段js,尤其是窗口属性这段:("toolbars=0,scrollbars=0,location=0,
statusbars=0,menubars=0,resizable=0")
我的vs是2008,用html格式写的脚本没有效果,要用xhtml写,求指教 ~~~~!
解决方案
js和你html,xhtml没关系,你放到script标签里面没有,你的字符串换行了吧。。要在一行里面
Window_Open详解 http://www.cnblogs.com/stswordman/archive/2006/06/02/415853.html
<script>
function openwindow(){
window.open("newwindow","图片","toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0");
}
</script>
时间: 2024-12-31 10:08:10