我有以下jquery snippe:
<snippet>
<content><![CDATA[
/$("[data-increment-input-value='true']").click(function(e){
e.preventDefault();
var /$input = /$(this).siblings('input');
/$input.val(parseInt(/$input.val())+1);
});
/$("[data-decrement-input-value='true']").click(function(e){
e.preventDefault();
var /$input = /$(this).siblings('input');
/$input.val(parseInt(/$input.val())-1);
});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>jq-increment-decrement-input</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>
我已经逃脱了所有的标记,但是当我在我的JS文件中时,我仍然无法选择该片段。为什么?我的意思是它显示在下拉列表中然后消解