我想直接链接到一个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>
答案 0 :(得分:0)
每次你打字时,文本字段中的某些内容都会更新表单的操作:
$("#product-name").keyup(function(){
$("#search").attr('action',"index/link/"+$(this).val());
});