What is the max length of browser URL for Window.Open

This question already has an answer here:

  • What is the maximum length of a URL in different browsers? 16 answers

  • This appears to have been answered already at maximum length of HTTP GET request?

    You can only safely assume 255 bytes, though some browsers currently support higher numbers. If you need to send more data, consider doing so in the body of a POST request instead.


    This has been answered:

    What is the maximum length of a URL in different browsers?

    The JS will operate until out of memory, but IE tops out at around 2K I believe.

    Please don't do that btw...

    链接地址: http://www.djcxy.com/p/7274.html

    上一篇: 通过GET方法发送的数据是否有限?

    下一篇: Window.Open的浏览器URL的最大长度是多少?