2017-05-15 32 views

回答

0

嘗試下面創建一個.html文件:

<html> 
    <form method="post" action="urclientlink"> 
     <input type="text" name="firstname"/> 
     <input type="text" name="lastname"/> 
     <input type="text" name="submitButton" value="Submit Form"/> 
    </form> 
</html> 

請在您的問題擬定一個更好的答案。謝謝!

0

這與將表單數據提交到您自己網站上的頁面沒有區別。您只需修改表單的動作屬性:

<form action="http://another-server.com/another-page"> 

您還需要確保您獲得正確的方法:例如, GETPOST

<form action="http://another-server.com/another-page" method="GET"> 

您需要與客戶進行檢查,看自己需要的頁面和方法。

相關問題