0
這是我的形象:jQuery UI的調整大小,獲得圖像的屬性值被調整
echo "<img src='articles/$article_id/$image' style='width:inherit;' id='image' data-articleid='$article_id' data-boxid='$box_id'>";
的Jquery:
<script type="text/javascript">
$(document).ready(function() {
var startW = 0;
var startH = 0;
$('#image').resizable({
start : function(event,ui) {
startW = $(this).outerWidth();
startH = $(this).outerHeight();
},
stop : function(event,ui) {
w = $(this).outerWidth();
h = $(this).outerHeight();
boxid = $(this).attr("data-boxid");
articleid = $(this).attr("data-articleid");
$.post("processforms/process_techtools.php", { boxid:boxid, articleid:articleid, width:w, height:h, resize_image_submit:0}, function (data) {
$("#progress").hide();
$("#success").show().fadeOut(1500);
});
}
});
});
</script>
在可調整大小的停止功能,boxid和條款ArticleID回報不確定。我怎樣才能看到這些屬性?
謝謝。
謝謝,得到它的工作。 – DanielOlivasJr