使表单重定向到文本框值?

时间:2014-05-13 05:59:36

标签: html redirect textbox

好吧,所以我正在制作一个“保修检查员”我在c#中创建了一个应用程序,当一个包标记为已发货时,它会将一个网页上传到我的服务器,其中包括一个倒计时器,让客户知道他们的控制台保修时间是什么过期。它看起来好像我的代码是正确的,但它显然不是因为我不能让我的生活得到它的工作。

以下是使用的代码:

    <input name="txtSearch" maxlength="12" size="25" type="text" class="field" id="txtSearch" />
<div>&nbsp;</div>

<div class="button style="display:inline-block">
<a type="submit" href='http://www.example.com/warranty/' + document.getElementById('txtSearch').value; return false;">Submit</a>
</div>

感谢您对此事的任何帮助。

2 个答案:

答案 0 :(得分:0)

请尝试以下代码

<div class="button style="display:inline-block">
<a  onclick='window.location.href="http://www.themodshop.co/warranty/" + document.getElementById("txtSearch").value;'>Submit</a>
</div>

答案 1 :(得分:0)

<input name="txtSearch" maxlength="12" size="25" type="text" class="field" id="txtSearch" />
<div>&nbsp;</div>

<div class="button style="display:inline-block">
<a type="submit" href="javascript:void(0);" onclick="pgredirect();">Submit</a>
</div>

<script type="text/javascript">
    function pgredirect(){
        window.location.href = 'http://www.themodshop.co/warranty/' + document.getElementById('txtSearch').value;
    }
</script>