我是新來的Javascript和我打算寫從包含的子串當前輸入到輸入文本字段中的字符串數組寫入文件中的所有字符串函數的所有單詞。查找包含給定的子
<!doctype html>
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<input type="text" >
<p></p>
<script>
var names = ["armadillo", "blue", "com", "demo", "engine"];
$("input").keypress(function() {
var incomplete = $(this).val();
searchStrings();
};
function(searchStrings())
{
for(name in names)
{
if(name.indexOf(incomplete) != -1)
{
document.write(name);
} else
{
document.write("no match found");
}
}
};
});
</script>
</body>
</html>
你的問題是什麼? – Mathletics
'function(searchStrings())'可能是你的問題。你有太多的括號。你也應該把價值傳遞給你的功能。 – Mathletics
你是否試圖從頭開發[jQuery autocomplete](http://jqueryui.com/autocomplete/)?爲什麼? – h2ooooooo