gpt4 book ai didi

javascript - 从用户输入中获取 JS 对象数据

转载 作者:行者123 更新时间:2023-11-28 04:21:07 25 4
gpt4 key购买 nike

接受标准:输入姓名,并在单击或按“返回”时将人员的分机返回到 UI。

我正在寻找有关如何使其发挥作用的建议。

UI

<html>
<head>
<title>SearchFunction</title>
</head>
<body>
<script type="text/javascript">

var extensionList = {

Abby: '8845',
David: '8871',
Jim: '8890',
Lewis: '8804',
};

var returnLookUp = function(){
var getInfo = document.getElementById("thisSearch");
var SearchInfo = thisSearch.value;
/*......?*/
}

</script>
<form>
<input id="thisSearch" type="text" placeholder="enter name">
<button onClick = "returnLookUp();">Find</button>
<input id="output" name="output" type="text" size="30">
<br><br>
</form>

</body>
</html>

最佳答案

没有定义明确的按钮类型。因此默认情况下它将是按钮type ="submit"。在这种情况下,它将尝试提交表单。可以使用按钮 type="button" 或防止默认行为,可以使用 preventDefault()

extensionList[thisSearch.value] 用于从对象中获取键的值,extensionList 是对象,thisSearch.value 将是与对象的键相同的输入

var extensionList = {

Abby: '8845',
David: '8871',
Jim: '8890',
Lewis: '8804',
};

var returnLookUp = function(e) {
e.preventDefault();
var getInfo = document.getElementById("thisSearch");
document.getElementById("output").value = extensionList[thisSearch.value];

}
<form>
<input id="thisSearch" type="text" placeholder="enter name">
<button onClick="returnLookUp(event);">Find</button>
<input id="output" name="output" type="text" size="30">
<br><br>
</form>

关于javascript - 从用户输入中获取 JS 对象数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45429022/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com