因此,我正在从事一个个人项目,到目前为止,我已经提出了这个建议(请参阅下文),我想知道与其使用if语句来表示“ aatrox cost”和英雄联盟中的所有其他冠军,不知道它是否会可以查看成本是否在搜索中,并从搜索中提取第一个单词(在本例中为aatrox)并将其放在“ _cost.length”和“ _cost [counter]”中

else if(document.getElementById("search_data").value=="aatrox cost") {
    for (counter=0; counter<aatrox_cost.length; counter++)
        document.getElementById("search_result").innerHTML+=(aatrox_cost[counter] + "<br />")
}


是的,这个项目是基于英雄联盟的:D

最佳答案

看看IndexOf可能就是您要找的东西

http://www.w3schools.com/jsref/jsref_indexof.asp

关于javascript - 查找表单输入的第一个单词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20610226/

10-09 20:30