Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要向另一个域提交表单,所以我不能使用 POST
表单需要提交到这个 URL:
http://www.mydomain.net/search.php?do=process&forumchoice[]=54&forumchoice[]=53&showposts=0&query=XXXXXXXX
XXXXXXX用户在文本字段中输入的值在哪里
XXXXXXX
我怎么能不使用 POST 做到这一点?
更改表单中的方法属性,它看起来像
<form method="get" action="http://www.mydomain.net/search.php">
只需确保在表单中包含所有必需的值,并设置名称,否则它们不会到达目的地
在您的表单标签中放置“GET”而不是 POST
<form action="http://www.mydomain.net/search.php" method="GET">