0

这里是新的,对 javascript 来说是全新的。

我从这个网站上抓取了这段代码,我相信,我不记得在哪里。

 <form id='formName' name='formName' onsubmit='redirect();return false;'>
            <input type='text' id='userInput' name='userInput' value=''>
            <input type='submit' name='submit' value='Submit'>
        </form>

        <script type='text/javascript'>
        function redirect() {
            var input = document.getElementById('userInput').value;
            switch(input) {
                case 'keyword1':
                    window.location.replace('page1.html');
                    break;
                case 'keyword2':
                    window.location.replace('page2.html');
                    break;
                default:
                    window.location.replace('error.html');
                    break;
            }


        }
        </script>

现在它只有在有人输入“keyword1”而不是“Keyword1”或“KEYWORD1”等时才会起作用。我相信解决这个问题很简单,但就像我说的那样,我是新人:-p

谢谢。

4

2 回答 2

3

将输入行交换为:

var input = document.getElementById('userInput').value.toLowerCase();
于 2013-04-26T15:34:10.417 回答
1

您可以在进行切换之前将字符串转换为小写:

var input = document.getElementById('userInput').value.toLowerCase();
于 2013-04-26T15:34:20.533 回答