为什么,如果我在 javascript 中编写 html 方法,它只会被调用一次,但如果我只有警报,它每次都会调用,我会更改输入中的 wy 值(模糊)。
$(".quantity").blur(function() {
console.log("upd");
$.ajax({
url: "/line_items/update_quantity/"+$(this).attr("id"),
type: "GET",
data: {quantity: $(this).val()},
success: function(text)
{
alert(text);
$('.right').html(text);
},
error: function(){
alert('Ошибка javascript');
},
dataType : "html"
});
});
每次模糊后我都需要重新加载 html 部分...