赞
踩
这种方法主要用js中的window.open(url,name,width,height,top,left)函数。
写在函数中能就是
- function centerWindow(url,name,width,height){
- var top=(screen.height-height)/2+50;
- var left=(screen.width-width)/2;
- window.open(url,name,'width='+width+',height='+height+',top='+top+',left='+left);
- }
另外,在js函数中传入变量的值就是如上所示,'width='+width, 记住即可吧。。。。
- function nav_transform(j){
- for(var i=1;i<5;i++){
- document.getElementById('nav'+i).style.backgroundPosition="left bottom";
- document.getElementById('nav'+i).style.color="#fff";
- }
- document.getElementById('nav'+j).style.backgroundPosition="right bottom";
- document.getElementById('nav'+j).style.color="blue";
-
- }
好吧,先记住这两种方式
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。