html Javascript indexOf和toLowerCase

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Javascript indexOf和toLowerCase相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en-us">
  <head>
    <meta charset="UTF-8">
    <title>Favorite Bands</title>
  </head>
  <body>

    <script>

      // Created an array named myBands.
      var myBands = ["britney", "selena", "bob dylan", "blink 182", "michael jackson"];

      // Created a prompt to get the user's favorite band.
      var userGuess = prompt("Which band or artist do you like?");

      // Converts the user's answer to lowercase.
      var userGuessLower = userGuess.toLowerCase();

      // Now we check the myBands array to see if it contains the user's answer.
      // If the user's band is not in the array...
      if (myBands.indexOf(userGuessLower) === -1) {
        alert("Nah! They're pretty lame...");
      }
      // If it is in the array...
      else {
        alert("OMG! I love them too!");
      }

    </script> 

  </body>
</html>

以上是关于html Javascript indexOf和toLowerCase的主要内容,如果未能解决你的问题,请参考以下文章

html 在JavaScript.html中的il metodo indexOf()

html 在JavaScript.html中的il metodo indexOf()

javascript中是不是有indexOf来搜索具有自定义比较功能的数组

JavaScript 中 如何判断一个元素是否在一个数组中

JavaScript-indexOf函数

JavaScript:String 和 Array 上 indexOf 方法的效率差异