熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

文章中所有圖片width大小批量設置方法

2022-06-13   來源: JSP教程 
怎麼設置文章中所有圖片width大小批量設置方法?這在實際應用中很常見下面有一段示例希望對大家有所幫助   復制代碼 代碼如下:

  
前面要加載一個jquery庫
<script type="text/javascript">
var setNewsImg = function(obj){
$(obj)find(img)each(function(i){
var imgw = $(this)width();
var imgh = $(this)height();
var scale=;
if(imgw>){
scale = /imgw;
consolelog(scale);
$(this)height(scale*imgh);
$(this)width(scale*imgw);
}
});
}
</script type="text/javascripy">
調用
<script>
$(function(){
setNewsImg(newsimg)
})
</script>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20515.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.