1

在这种情况下,我应该使用 method=" post " 还是 method=" get " 提交 ajax 表单?

更新: 在提交 ajax 表单的情况下,什么时候应该使用 post 以及什么时候 get?

<form  action="script.php" method="post">
  <label>Url: </label> 
  <input value="http://" id="url-input" type="text" size="100" /><br />
  <label>paste html file source: </label><textarea rows="10" cols="60"></textarea><br />
  <input type="checkbox" checked /> parse links<br />
  <input type="checkbox" checked /> parse images<br />
  <button type="submit" id="submit-html">Submit</button>
</form>

谢谢

4

1 回答 1

1

好吧,如果您要粘贴 HTML 源代码,那么您肯定会想要使用 POST,这样您就不会在使用 GET 的请求 URI 中得到一百万个字符......我会说任何时候您使用 textarea ,您应该发布数据。

于 2010-07-10T23:58:08.813 回答