我有基本的js脚本,但我无法弄清楚它为什么现在正在运行。
用户在这里写amout:
strtr
通过以相同的形式提交按钮来更改此表单中的值
<input class="dpinput" id="gvfrom" placeholder="Suma.." type="text" value="">
JS脚本在这里
<form>
<input type="hidden" name="amount" id="gvhere" value="">
<input type="submit" class="pbutt2" value="⇨" onclick="go3(); return false;">
</form>
问题是表单未提交(通常会重定向到带有值的其他网站)。
答案 0 :(得分:0)
只需删除“return false;”从提交按钮。
答案 1 :(得分:0)
你为什么要放return false
?尝试删除它,我猜它会更好。