gpt4 book ai didi

Javascript (jQuery) 错误 : SyntaxError: missing ) after argument list

转载 作者:行者123 更新时间:2023-11-30 07:15:40 25 4
gpt4 key购买 nike

我有一个简单的 javascript/jquery 函数:

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();
}

哪个工作正常,但是当我添加宽度参数时:

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

它给我一个错误:

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%");
.............................................|

这段代码有什么问题?

最佳答案

您需要传递一个对象作为参数(在 {} 内)

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

关于Javascript (jQuery) 错误 : SyntaxError: missing ) after argument list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19958240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com