如何在此代碼中使用EditPhoto變量? 我在這裏添加我的完整代碼。 如何使用EditPhoto變量在這裏: ** EditPhoto:{名稱: 「這張相片進行編輯」 圖標: 「編輯」} **使用變量的jquery代碼
$(document).ready(function() {
$('#sortable li').click(function() {
id = $(this).attr("id");
id = id.replace("GaleriSirala_", "");
alert(idBul);
EditPhoto = ("edit-photo&EditNow=" + id);
});
});
$(function() {
$.contextMenu({
selector: '.context-menu-one',
callback: function(key, options) {
var m = "index.php?sayfa=" + key;
$(location).attr('href', m)
},
items: {
EditPhoto :{name: "Edit This Photo", icon: "edit"},
}
});
$('.context-menu-one').on('click', function(e){
console.log('clicked', this);
})
});
$j('.GaleriListele').click(function() {
alert($(this).childen('a').attr('id'));
});
要在哪裏使用EditPhoto? – Satpal
在這裏:項目:{ EditPhoto:{name:「編輯這張照片」,圖標:「編輯」}, } – Dogan
你確定你想用它作爲屬性名嗎? 'edit-photo&EditNow = id'看起來像一個URL參數字符串,爲什麼會是一個屬性名稱? – Barmar