我希望得到一些关于我正在玩的剧本的建议。我正在研究一个计算句子中许多元素的程序,现在我只是计算元音总数。我有一个工作脚本,但我想知道,到目前为止,有没有比这更好的方法呢?
HTML
<div id="test">
<input type="text" />
<p></p>
<p></p>
</div>
JS
$(document).ready(function(){
var key;
var vowels;
$("#test input[type='text']").on("keydown", function(e){
key = e.target.value;
$("#test p:nth-of-type(1)").text(key);
})
$(this).on("keydown", function(e){
vowels = [];
if(e.keyCode == 13){
console.log($("#test input[type='text']").val());
for(var i = 0; i < $("#test input[type='text']").val().length; i++){
switch($("#test input[type='text']").val()[i]){
case "a":
vowels.push($("#test input[type='text']").val()[i]);
break;
case "e":
vowels.push($("#test input[type='text']").val()[i]);
break;
case "i":
vowels.push($("#test input[type='text']").val()[i]);
break;
case "o":
vowels.push($("#test input[type='text']").val()[i]);
break;
case "u":
vowels.push($("#test input[type='text']").val()[i]);
break;
}
}
$("#test p:nth-of-type(2)").text("There are " +vowels.length +" vowels.");
}
})
})
这是Working Pen。
答案 0 :(得分:1)
您可以使用临时变量优化简单性和速度:
if(e.keyCode == 13){
var tmp=$("#test input[type='text']").val();
console.log(tmp);
for(var i = 0; i < tmp.length; i++){
switch(tmp[i]){
case "a":
vowels.push("a");
break;
case "e":
vowels.push("e");
break;
case "i":
vowels.push("i");
break;
case "o":
vowels.push("o");
break;
case "u":
vowels.push("u");
break;
}
}
因为无数次解析html的速度很慢而且代码行的膨胀使得查看其他问题变得更加困难。
而不是
$(this).on("keydown", ...
你可以检查&#34; keyup&#34;因为它提供了更新的内容。
答案 1 :(得分:1)
您实际上可以更多地简化代码并完全删除switch语句。
在这种方法中,我使用.match(/[aeiou]/gi)
来生成元音数组。 g
flag将匹配所有匹配项,i
flag将忽略该字符的大小写。
$('#test :input').on('input keydown', function(e) {
var input = this.value,
match = input.match(/[aeiou]/gi),
count = match ? match.length : 0;
$('#test p').eq(0).text(input);
if (e.keyCode === 13) {
$('#test p').eq(1).text('There are ' + count + ' vowels.');
}
});
答案 2 :(得分:0)
if(e.keyCode == 13){
var tmp=$("#test input[type='text']").val();
for(var i = 0; i < tmp).length; i++){
if(["a", "e", "i", "o", "u"].indexOf(tmp[i]))
vowels.push(tmp[i]);
}
}