Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
506 views
in Technique[技术] by (71.8m points)

jquery - Javascript shorthand if

if (event.keyCode === 38 || event.keyCode === 33 || event.keyCode === 40 || event.keyCode === 34) {
}

How to shorthand this code? Remember that conditional switch statements are slow.

I want to do something like

if (event.keyCode === 38 || 33 || 40 || 34)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I actually recommend using a switch. The general rule of thumb is

  • 1 or 2 values: use an if
  • 3 to 10 values: use a switch
  • 11 or more: use an array lookup

But since you're using jQuery, you can simply do:

jQuery.inArray(event.keyCode, [38,33,40,34])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...