gpt4 book ai didi

Javascript 字符串与 if 的连接

转载 作者:行者123 更新时间:2023-11-28 20:32:56 25 4
gpt4 key购买 nike

为了提取条件值,我将如何执行以下操作?

formatter: function() {return ' ' +
'<b>Time: </b>' + Highcharts.dateFormat('%b %d, %H:%M ', this.x) + '<br />' +
'<b>Volume: </b>' + if (this.y) {'Successful';} else { 'Failed';} + '<br />'
},},

最佳答案

创建单独的变量来存储消息:

var message = 'Failed';
if (this.y) {
message = 'Successful';
}

或者使用?:运算符:

formatter: function() {return ' ' +
'<b>Time: </b>' + Highcharts.dateFormat('%b %d, %H:%M ', this.x) + '<br />' +
'<b>Volume: </b>' + (this.y ? 'Successful' : 'Failed') + '<br />'
},},

关于Javascript 字符串与 if 的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15982951/

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