试图找到 img 高度并将内联应用为 attr。目前 img 只有 src attr 但想动态查找高度并应用。
当前的
<img src="#">
期望的
<img src="#" height="find this images height">
这就是我到目前为止所拥有的
$(document).ready(function() {
$("img").load(function() {
var width = $(this).width();
var height = $(this).height() ;
$(this).attr( "height", "+ height" );
});
});
有任何想法吗?