我可能遗漏了一些基本的东西,但是我在 html 中有一个文本框,我希望用户向其中添加一些文本,当他们单击一个按钮时,它会添加到 url:
例如
<form id="discount_code" action='' method='get'>
<input type='text' name='code' id='code' placeholder='Enter a discount code..'></>
<input type="button" class='small-button' id='useCode' value='Use Code' onClick="parent.location='www.url.com?id=32&code=< TEXT ENTERED HERE >'" />
</form>
有什么办法可以让它与 jQuery 更改事件或类似事件一起使用?我搜索并发现了许多类似的建议,但似乎没有任何效果。我需要它以 GET 格式传递给 url。它还最好需要在有人粘贴文本的情况下工作。
谢谢