jquery我怎么能使用撇号是声明

时间:2016-07-20 04:45:13

标签: javascript jquery

jQuery('#Level_of_Interest__c option[value="Bachelor's"]').attr("selected","selected")

这是我试图运行的代码,但由于学士学位上的“'”我收到错误,任何人都有任何想法?

3 个答案:

答案 0 :(得分:0)

您可以使用反斜杠:

//since \ itself is a escape character you need to use \\
jQuery('#Level_of_Interest__c option[value="Bachelor\\'s"]')
   .attr("selected","selected")

答案 1 :(得分:0)

单反斜杠就足够了。

$('#Level_of_Interest__c option[value="Bachelor\'s"]').attr("selected","selected")

答案 2 :(得分:0)

你只需要使用反斜杠

来逃避它
jQuery('#Level_of_Interest__c option[value="Bachelor\'s"]').attr("selected","selected");