摘要:
个人改良了一下做做成函数:调用函数$(document).ready(function(){ autoImg("#text2 img",600);autoImg("#text1 img",600);});函数function autoImg(tNmae,wValue){ $(tNmae).each(function(){ if (this.width>wValue) {this.width = wValue;} }); } 阅读全文
摘要:
个人改良了一下做做成函数:调用函数$(document).ready(function(){ autoImg("#text2 img",600);autoImg("#text1 img",600);});函数function autoImg(tNmae,wValue){ $(tNmae).each(function(){ if (this.width>wValue) {this.width = wValue;} }); } 阅读全文
摘要:
onClick="deleteMe(this.parentNode.parentNode);父节点的父节点,比如有这样一段HTML:<form id="form"><div id="divA"> <div id="divB"> <input type="button" value="删除" onClick="deleteMe(this.parentNode.parentNode);"> </div>< 阅读全文
|