如何通过单击项目名称打开链接?

时间:2018-05-19 15:56:37

标签: jquery

link to the code page

我尝试添加以下代码,但我不知道要写什么而不是SEL-NAME(您点击的项目的名称)。

.on('click', function(){
   window.location = "editor://open/?file=C:\Users\sm\Documents\website\SEL-NAME.php&line=1"
});

有人请帮我添加jQuery代码吗?

1 个答案:

答案 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";
});