日期:2014-05-16 浏览次数:20349 次
<html>
<head>
<title>Test4</title>
</head>
<body>
<a href="http://www.itcast.cn" class ="itcast" >传智播客1</a>
<a href="http://www.itcast.cn" class ="itcast" >传智播客2</a>
<a href="http://www.itcast.cn" class ="itcast" >传智播客3</a>
<a href="http://www.itcast.cn" class ="itcast" >传智播客4</a>
<script type="text/javascript" src="Test4.js"></script>
</body>
</html>
window.onload = prepareLinks;
function prepareLinks(){
var links = document.getElementsByTagName("a");
for(var i=0;i<links.length;i++){
if(links[i].getAttribute("class")=="itcast"){
links[i].onclick = function(){
popUp(this.getAttribute("href"));
return false;
}
}
}
}
function popUp(winURL){
window.open(winURL,"itcast","width=320,height=480");
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test4</title>
</head>
<body>
<a href="http://www.itcast.cn" class ="itcast" >传智播客1</a>
<a href="http://www.itcast.cn" class ="itcast" >传智播客2</a>