gpt4 book ai didi

php - 在搜索引擎上提交时如何删除 URL 参数

转载 作者:行者123 更新时间:2023-11-29 23:56:56 25 4
gpt4 key购买 nike

我在自己的网站上构建了自己的搜索引擎。

当我单击提交(作为搜索按钮)时,我希望 URL 处的搜索输出为:

http://inindonesia.org/marketplace/tags/oleh-oleh-khas-medan

但是,当我单击提交(搜索按钮)时,输出是:

http://inindonesia.org/marketplace/tags/?search=oleh+oleh+khas+medan&hidden=oleh-oleh-khas-medan&Submit=Cari+Produk

我的代码是:

<form autocomplete="off" action="/marketplace/tags/(i want this get parameter from the value input id "hidden", example : oleh-oleh-khas-medan)" method="GET">
<table border="0" border="0" cellpadding="2px" cellspacing="2px" width="100%" bgcolor="">
<tr>
<td style="font-size:12px; text-align:left;" width="80%">
<input id="search" name="search" type="text"/><input id="hidden" name="hidden" type="hidden"/>
</td>
<td style="font-size:12px; text-align:right;" width="20%">
<input id="searchsubmit" name="Submit" value="Cari Produk" type="submit">

仅供引用:我在我的网站上使用 Wordpress。

有什么想法可以像我想要的那样更改 url 参数吗?
谢谢

最佳答案

尝试这样的事情......或者你想要一些不同的东西?解释一下?

HTML

<form autocomplete="off" action="" onsubmit="return submitform()" method="POST">
<table border="0" border="0" cellpadding="2px" cellspacing="2px" width="100%" bgcolor="">
<tr>
<td style="font-size:12px; text-align:left;" width="80%">
<input id="search" name="search" type="text"/><input id="hidden" name="hidden" type="hidden"/>
</td>
<td style="font-size:12px; text-align:right;" width="20%">
<input id="searchsubmit" name="Submit" value="Cari Produk" type="submit">
</td>
</tr>
</table>
</form>

JAVASCRIPT

<script type="text/javascript">
function submitform()
{
var hiddenFieldValue = document.getElementById('search').value;
hiddenFieldValue = hiddenFieldValue.replace(/\s+/g, '-').toLowerCase();
//alert(location.host+'/marketplace/tags/'+hiddenFieldValue);
window.location = 'http://'+location.host+'/marketplace/tags/'+hiddenFieldValue;
}
</script>

关于php - 在搜索引擎上提交时如何删除 URL 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25278379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com