尝试使用jQuery / ajax将变量“ flickrurl”传递到PHP页面。它在使用纯文本字符串而不是变量时有效。我是否正确分配了变量? See the full code in action here:
$trash.droppable({
accept: '#gallery > li',
activeClass: 'ui-state-highlight',
drop: function(ev, ui) {
deleteImage(ui.draggable);
//set variable equal to src of image tag in #gallery > li
var $flickrurl = $item.find('img').attr("src");
//pass variable to php page
$.post("updateDB.php", $flickrurl );
}
});
最佳答案
jQuery的AJAX函数期望JSON形式的数据。尝试:
$.post("updateDB.php", { 'flickrurl': $flickrurl } );