使用 jQuery 连续多个 If 语句
我想向一个函数添加多个 if 语句。我使用 YouTube 的 iFrame API 在视频播放或暂停时执行不同的操作。我目前有以下代码:
function onPlayerStateChange(newState) {
console.log(newState);
if (newState.data == 1) {
//do something
return false;
} else {
//do something else
return false;
}
}
当我只有第一个 if 语句时它工作得很好,但当我向其中添加 else 子句时它会中断。如何使用 jQuery 检查这样的多个条件?
I would like to add multiple if statements to a function. I am using YouTube's iFrame API to do different actions when the video is play or paused. I currently have the following code:
function onPlayerStateChange(newState) {
console.log(newState);
if (newState.data == 1) {
//do something
return false;
} else {
//do something else
return false;
}
}
It works great when I only have the first if statement, but breaks when I add the else clause to it. How do you check for multiple conditions like this with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
newState.data
上使用switch
,如下所示:Use a
switch
onnewState.data
, like this:使用
if ... else
的代码是一种“非此即彼”的方法。我并不完全清楚你想做什么。然而,语法是有效的,所以它一定是失败的逻辑。如果要执行多个独立操作,请使用连续的
if
块,例如:如果需要满足多个条件:
Your code with the
if ... else
is an "either-or" approach. It's not entirely clear to me what you're trying to do. However, the syntax is valid so it must be the logic that fails.If you want to do multiple independent action, use sequential
if
blocks, e.g.:If multiple conditions need to be true: