gpt4 book ai didi

javascript - 将输入标签值作为 href 参数传递给

转载 作者:搜寻专家 更新时间:2023-10-31 21:59:06 24 4
gpt4 key购买 nike

我想在 href 中将输入标签的值作为参数(quantita)传递。我应该使用 javascript 来做这个吗?对不起我的英语谢谢

<input type="text" id="qta_field" value="${item.value}"/><a href="updateItem?codice=${item.key.codice}&quantita=">update</a>

enter image description here

最佳答案

使用链接而不使用任何库的最简单方法:

<input type="text" id="qta_field" value="${item.value}"/>
<a href='' onclick="this.href='updateItem?codice=${item.key.codice}&quantita='+document.getElementById('qta_field').value">update</a>

关于javascript - 将输入标签值作为 href 参数传递给,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27148673/

24 4 0