我想設計一個網頁
希望在上面出現一個填訂單編號的方塊
當按送出後 自動跳到 /databs/在方塊填的訂單編號/index.php
有辦法嗎?
如果可以的話
請將網頁原始碼php or html都可以
回覆給我
萬分感激~
跳到 /databs/在方塊填的訂單編號/index.php
題目理解 這樣對嗎
1 在網頁填訂單編號的方塊 輸入 123
2 按送出
3 3A另開網頁 123網頁 還是 3B另開 固定頁 在某格 跳123
是說在方塊輸入單號後
就自動開啟網頁 http://xxx.com/databs/輸入的訂單號/index.php
喔 是另開網頁http://xxx.com/databs/123/index.php
eason57提到:
回覆給我
要寄到什麼地址...
試看看合不合用
<pre class="c" name="code">
<script language="Javascript">
function changeurl() {
window.open("http://xxx.com/databs/" + document.getElementById("orderno").value + "/index.php");
}
</script>
<input type=text id="orderno"/>
<input type=button value="SEND" onclick="changeurl();"/>
阿 抱歉 我選錯人了
請到這補點~抱歉
http://ithelp.ithome.com.tw/question/10122211