Javascript教程_解决如何设置链接批量用open方式打开源码教程
想做网易首页的效果,首页上的视频都是用 window.open 的方式打开,打开的页面没有工具栏、地址栏等控件。但是a 的href还是起作用了,那么怎样使open的方式打开一个无地址栏等的窗口呢。我做了个代码可以新窗口打开,但本页还是跳转了,不知怎么屏蔽href的本页跳转。谢谢大家了
function Aclick(arrobj) {
for(var i=0; i<arrobj.length; i++){
arrobj[i].onclick=Function("show1(this)");
}}
function show1(obj){
window.open(obj.href, "newwindow", "width=700,height=600,status=1,resizable=0,scrollbars=1,toolbar=0,menubar=0,titlebar=0,directories=0");
}
解决方案
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>弹出视频窗口</title>
</head>
<script language="javascript">
function newvediowindow(theobj) {
window.open(theobj.title, "newwindow", "width=700,height=600,status=0,resizable=0,scrollbars=0,toolbar=0,menubar=0,titlebar=0,directories=0",false);
}
</script>
<body>
<a href="javascript:" title="" onclick="newvediowindow(this)"><img src="https://dl.dropbox.com/u/4042262/code/html/basicimg/photo3.JPG" /></a>
</body>
</html>
兼容IE8、FF3.6