我得到了这个脚本来从这里获取带有获取请求表单的 友好 URL... 带有获取请求表单的友好 URL 这里是脚本
<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 但此脚本发布在同一页面上...有没有办法在其他页面上发布...
请帮助谢谢