如何使用javascript动态更改锚标签参数

问题描述 投票:0回答:2

我的网站搜索栏中有一个文本字段,例如

<input type="text" name="place" id="place">

还有一个如下所示的锚标记。我有多个锚标记。需要全部更改

<a href="something.php?id=1&placeName=//Value from the text field//">Something</a>
<a href="something.php?id=2&placeName=//Value from the text field//">Something</a>

我想在文本字段值更改时动态更改锚标记参数的值。如何使用javascript做到这一点

javascript dom
2个回答
0
投票

尝试一下:


0
投票

您可以尝试以下方法。

© www.soinside.com 2019 - 2024. All rights reserved.