我正在使用 javascript 传递的 url 中的 $_GET 变量在 Wordpress 页面中开发一个简单而小型的搜索:
<script>
function pesquisar()
{
var pesquisar = document.getElementById('termo').value;
var caminho = document.URL+'&pesquisa='+pesquisar;
window.location = caminho;
}
</script>
<input type='text' id='termo'>
<input type='button' value='pesquisar' onclick='pesquisar()'>
所以,要搜索的网址是:MYURL/?page_id=51&pesquisa=test
当然,page_id 是可变的。如果我再次搜索,URL 将是:MYURL/?page_id=51&pesquisa=test&pesquisa=new,这是怎么回事。
我怎样才能得到 MYURL/?page_id=51 使用javascript?window.location.pathname 不是我需要的。
谢谢。