このコードで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:{名前: "この写真の編集"アイコン: "編集"} } – Dogan
本当にあなたはプロパティ名として使用してもよろしいですか? 'edit-photo&EditNow = id'はURLパラメータ文字列のように見えますが、なぜそれがプロパティ名になりますか? – Barmar