我正在编写一个程序,它从文本框中获取所有文本,将其解析为一个删除空格的数组,然后搜索数组中的预期值.
我可以测试它并让程序成功获取文本框中的文本并将其解析到数组中,但是当我尝试在数组中找到期望值时,它会抛出错误.错误是“对象不支持此属性或方法”.
function generateOutputfvoc()
{
var inputArr = document.getElementById("inputBox").value.split(/[\s]/);
var nameLoc = inputArr.indexOf("Name");
document.getElementById("contactNameOutput").innerHTML = nameLoc;
}
HTML片段:
<p>Paste Text Here</p>
<textarea rows='8' cols='152' id='inputBox' placeholder="Copy text and paste here" wrap="off"></textarea>
<form><input type='button' onclick='generateOutputfvoc()' value='Generate Output' /></form>
<p>Contact Name: <b id='contactNameOutput'></b></p>
谢谢.
解决方法:
您可以根据此页面使用javascript的原型功能添加indexOf():https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf