我有这个脚本从这里获取带有获取请求表单的友好URL ... Friendly URL with get request form 这是脚本
<form id='contactus' action='search_out.php' method='get' accept-charset='UTF-8'>
<input type="text" name="first" value="" id="first">
<input type="text" name="second" value="" id="second">
<input type="text" name="third" value="" id="third">
<p><input type="button" value="Continue →" onclick="submitFriendly();"></p>
</form>
<script type="text/javascript">
function submitFriendly() {
window.location.href = window.location.href + '/Search/' + document.getElementById('first').value + '/' + document.getElementById('second').value + '/' + document.getElementById('third').value;
}
</script>
我不擅长javascript ...我想将此帖子发布到新页面,这是search_out.php但是这个脚本在同一页面上发布...有没有办法在其他页面上发布...
请帮忙 THX
答案 0 :(得分:1)
脚本的作用是获取当前位置。请给它一个新的。
window.location.href = "search_out.php/"+document.get.......