【发布时间】:2012-12-19 16:03:16
【问题描述】:
在调整图片大小时,我想将图片宽度添加到
,我尝试了以下方法,有人可以帮忙吗?谢谢:<script>
$(document).ready(
function() {
$( "#resizable" ).resizable({
resize: select_function
});
});
var select_function = function(event, ui)
{
$("#w").text($( "#resizable" ).attr("width"));
};
</script>
<div id="w">Test</div>
<img border="0" id="resizable" src="picture.png">
【问题讨论】:
标签: jquery image html resizable