沒有錯,只要我將庫更改爲1.3.2我的成功之後工作得很好?怎麼會?似乎沒有,即使測試的警報..jQuery:在1.3.2中運行成功,但在1.4.2中運行不成功
這裏的,這是對發生的代碼:
function crop() {
$.ajax({
type: "POST",
dataType: 'json',
url:"functions.php?action=crop",
data:
{
x: $('#x').val(),y: $('#y').val(),w: $('#w').val(),
h: $('#h').val(),fname:$('#fname').val(),fixed:fixed,
sizew:sizew,sizeh:sizeh},
success: function(response)
{
alert('TEST');
if(!fixed) // Missing { }
{
$("#showPhoto").css({overflow:"auto"}); // Missing ;
}
$("#showPhoto").html(
$(document.createElement("img")).attr(
"src",response.filename)).show();
$("#showPhoto").after("There you go...").show();
$("#image").slideUp();
},
error:function(response) {
console.log('error: ', response);
}
});
}
我怎樣才能使其與jQuery 1.4.2庫工作嗎?
什麼是固定的? – SLaks 2010-09-03 22:35:01
這和你以前的問題有什麼不同? http://stackoverflow.com/questions/3639317/jquery-whats-up-with-the-success – user113716 2010-09-03 22:38:04
fixed是一個var fixed = 1;如果圖像有固定的大小.. – Karem 2010-09-03 22:42:06