jQuery('#Level_of_Interest__c option[value="Bachelor's"]').attr("selected","selected")
这是我试图运行的代码,但由于学士学位上的“'”我收到错误,任何人都有任何想法?
答案 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");