jquery cookie设置抛出意外的字符串错误

时间:2011-08-29 11:10:16

标签: jquery cookies

我正在使用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;   
});

1 个答案:

答案 0 :(得分:2)

您的语法错误:应为,

jQuery('#select').change(function() {
    if(jQuery(this).val() == "defaultselect"){
        jQuery.cookie('mycookie','123456789'); //`:` should be `,`
    }
    return false;   
});