在表单提交链接到包含输入值的URL

时间:2014-11-14 06:13:44

标签: html .htaccess mod-rewrite

我想直接链接到一个url,例如index / link / product-name,其中value是表单上输入的值。我不希望它转到index / link.php?product-name = value。有没有办法做到这一点?

    <form id="search" class="header_form" action="">
        <input id="product-name" class="header_search" type="text" placeholder="What are you looking for?" required>
        <span>
        <input type="button" value="Search">
        </span>
    </form>

1 个答案:

答案 0 :(得分:0)

每次你打字时,文本字段中的某些内容都会更新表单的操作:

$("#product-name").keyup(function(){
$("#search").attr('action',"index/link/"+$(this).val());

});