我希望当分辨率小于 980px 时,应该执行下面的代码(从 a 中删除宽度和高度img
)。代码将如何?谢谢
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){
$('img').each(function(){
$(this).removeAttr('width')
$(this).removeAttr('height');
});
});
</script>