gpt4 book ai didi

javascript - 如何将 html 文本框值传递给 javascript 函数

转载 作者:太空宇宙 更新时间:2023-11-04 13:49:12 24 4
gpt4 key购买 nike

我有一个 HTML 文本框,用户将在其中输入一些我想传递给 JavaScript 函数的字符串:

<input type="text" id="ad_search_query" style="width:295px">&nbsp;
<input type="button" value="<s:text name="button.search"/>" class="p-userButton"
onClick="ADSEARCHGF.showTable('');"/>

请建议我该怎么做。

最佳答案

如果事件是由按钮引发的,如果不先获取文本输入对象,您将无法将其传递给函数,通过 id 获取它是最好的方法。

可以使用文本框的id:

var searchValue = document.getElementById('ad_search_query').value;

在您的函数中,或使用 Ahsan Rathod 的方法将此代码用作参数。

关于javascript - 如何将 html 文本框值传递给 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7107398/

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