我尝试添加以下代码,但我不知道要写什么而不是SEL-NAME(您点击的项目的名称)。
.on('click', function(){
window.location = "editor://open/?file=C:\Users\sm\Documents\website\SEL-NAME.php&line=1"
});
有人请帮我添加jQuery代码吗?
答案 0 :(得分:0)
好的,我会尽力帮助继续
变化:
.on('click', function(){
window.location = "editor://open/?file=C:\Users\sm\Documents\website\SEL-NAME.php&line=1"
});
为:
.on('click', function(){
window.location = "editor://open/?file=C:\Users\sm\Documents\website\" + $(this).attr("name") + ".php&line=1";
});