最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript ( jQuery ) Error: SyntaxError: missing ) after argument list - Stack Overflow

programmeradmin4浏览0评论

I have a simple javascript/jquery function:

jQuery(document).ajaxSuccess(function(e, xhr, settings) {
   var widget_id_base = '099_cf_samurai_widget';

   if(settings.data.search('action=save-widget') != -1 &&
        settings.data.search('id_base=' + widget_id_base) != -1) {
         my_function_chosen_o99();
   }
}); 

function my_function_chosen_o99(){
   jQuery(".chzn-select").chosen();
}

Which works correctly, but when I add the width parameter:

function my_function_chosen_o99(){
   jQuery(".chzn-select").chosen(width:'95%');
}

It gives me an error:

Error: SyntaxError: missing ) after argument list
Source File: http://localhost/my-path/js/o99.chosen.init.js?ver=k99
Line: 20, Column: 41
Source Code:
      jQuery(".chzn-select").chosen(width:"95%"); 
.............................................|

What is wrong with this code?

I have a simple javascript/jquery function:

jQuery(document).ajaxSuccess(function(e, xhr, settings) {
   var widget_id_base = '099_cf_samurai_widget';

   if(settings.data.search('action=save-widget') != -1 &&
        settings.data.search('id_base=' + widget_id_base) != -1) {
         my_function_chosen_o99();
   }
}); 

function my_function_chosen_o99(){
   jQuery(".chzn-select").chosen();
}

Which works correctly, but when I add the width parameter:

function my_function_chosen_o99(){
   jQuery(".chzn-select").chosen(width:'95%');
}

It gives me an error:

Error: SyntaxError: missing ) after argument list
Source File: http://localhost/my-path/js/o99.chosen.init.js?ver=k99
Line: 20, Column: 41
Source Code:
      jQuery(".chzn-select").chosen(width:"95%"); 
.............................................|

What is wrong with this code?

Share Improve this question edited Feb 27, 2014 at 18:10 Eric Leschinski 154k96 gold badges422 silver badges337 bronze badges asked Nov 13, 2013 at 15:49 Obmerk KronenObmerk Kronen 16k17 gold badges70 silver badges107 bronze badges 1
  • It is related to a javascript syntax error – Arun P Johny Commented Nov 13, 2013 at 15:51
Add a ment  | 

1 Answer 1

Reset to default 9

You need to pass an object as the argument(within {})

 jQuery(".chzn-select").chosen({width:'95%'});
发布评论

评论列表(0)

  1. 暂无评论