is there a max size to the length of a hidden input in html?

前端 未结 2 1390
走了就别回头了
走了就别回头了 2020-11-29 03:32

in other words:


and if so, what is it?<

2条回答
  •  旧巷少年郎
    2020-11-29 03:36

    It depends on the method you send the form with.

    With GET, there is a commonly agreed on limit of about 1-2 kilobytes, depending on browser and server limitations.

    With POST, there is no technical limit in the browser, but usually one on the server side - see e.g. Apache's LimitRequestBody, PHP's post_max_size and so on.

提交回复
热议问题