当前位置:   article > 正文

点击弹出小窗口来实现上传_php小窗口实现

php小窗口实现

这种方法主要用js中的window.open(url,name,width,height,top,left)函数。

写在函数中能就是

  1. function centerWindow(url,name,width,height){
  2. var top=(screen.height-height)/2+50;
  3. var left=(screen.width-width)/2;
  4. window.open(url,name,'width='+width+',height='+height+',top='+top+',left='+left);
  5. }

里面一个小技巧就是利用screen.height,就能求出在不同屏幕上弹出框居中的话,top与left值,所以函数中传入宽和高就行。

另外,在js函数中传入变量的值就是如上所示,'width='+width,  记住即可吧。。。。

  1. function nav_transform(j){
  2. for(var i=1;i<5;i++){
  3. document.getElementById('nav'+i).style.backgroundPosition="left bottom";
  4. document.getElementById('nav'+i).style.color="#fff";
  5. }
  6. document.getElementById('nav'+j).style.backgroundPosition="right bottom";
  7. document.getElementById('nav'+j).style.color="blue";
  8. }

这种呢,也是用+号将变量与'nav'连接起来。。但是第一中连续传入变量就是用+号都连接起来。。。

好吧,先记住这两种方式







声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/562907
推荐阅读
相关标签
  

闽ICP备14008679号