JS技术

Javascript教程_解决如何设置链接批量用open方式打开源码教程_Javascript教程

字号+ 作者:H5之家 来源:H5之家 2015-09-27 12:00 我要评论( )

Javascript教程_解决如何设置链接批量用open方式打开源码教程,学习Javascript教程_解决如何设置链接批量用open方式打开源码教程,Javascript教程_解决如何设置链

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

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评