gpt4 book ai didi

javascript - 如何为 jQuery 创建代码片段?

转载 作者:行者123 更新时间:2023-12-01 01:53:19 26 4
gpt4 key购买 nike

所以我想为以下内容创建一个片段:

$("input").click(function(event){
//code goes here
});

但是当我尝试在 sublime text 中创建代码片段时:

<snippet>
<content><![CDATA[
$("${1:Tag}").click(function(event)
{
${2:code goes here}
});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>sclick</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>

显然两者的“$”之间存在某种冲突。我通读了文档但没有找到任何东西。如何为此创建一个代码片段?

最佳答案

使用\转义$:

<snippet>
<content><![CDATA[
\$("${1:Tag}").click(function(event)
{
${2:code goes here}
});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>sclick</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>

(这是 the only supported escape sequence 。)

关于javascript - 如何为 jQuery 创建代码片段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51247382/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com