0
$(function() {
$("#rv-title").click(function(event) {
$("#rv-content").toggle();
$.ajax({
url: 'index.php?route=check',
dataType: 'json',
success: function(json) {
if (json['output']) {
$('#cart .content').html(json['output']);
}
}
});
event.stopPropagation();
});
$(document).click(function(event) {
var a = $(event.target).andSelf().parents("#rv-content");
if (a.length == 0 && $("#rv-content").is(":visible")) {
$("#rv-content").toggle();
}
});
});
我的ajax函數在哪裏,是放它的地方嗎?jquery ajax裏面的函數
感謝
在您看來,哪一個更有效? –
第二個,因爲你可以多次調用my_ajax()函數。因爲。再次寫同樣的想法是浪費時間。 – Gowri