我正在使用jquery cookie插件并在尝试设置时获得unexpected string error
。
jQuery('#select').change(function() {
if(jQuery(this).val() == "defaultselect"){
jQuery.cookie('mycookie':'123456789'); // This line throws the error
}
return false;
});
答案 0 :(得分:2)
您的语法错误:
应为,
jQuery('#select').change(function() {
if(jQuery(this).val() == "defaultselect"){
jQuery.cookie('mycookie','123456789'); //`:` should be `,`
}
return false;
});