gpt4 book ai didi

javascript - 预期的,但在带有默认参数的 JS 函数的 netbeans 警告中发现 =

转载 作者:行者123 更新时间:2023-12-03 03:42:27 25 4
gpt4 key购买 nike

function my_check_request(comp,load='')
{
if(load==''){
var btn = jQuery(comp).button('loading');
//i will do something here
}
else{
jQuery(comp).css("display", "inline");
//i will do something here
}

在 Netbeans 中收到警告 - 预期的,但发现 =有更好的办法吗?

最佳答案

function my_check_request(comp, load)
{
load = load || '';
if (load == '') {
var btn = jQuery(comp).button('loading');
//i will do something here
} else {
jQuery(comp).css("display", "inline");
//i will do something here
}
}

像这样更改函数解决了问题

关于javascript - 预期的,但在带有默认参数的 JS 函数的 netbeans 警告中发现 =,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45562266/

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