我在Internet Explorer上阅读了一些关于URL限制的主题:
此限制(2083个字符)是否也适用于' src' img标签的属性?
我猜测答案是“是”,但我的测试显示了不同的结果。我创建了一个测试HTML页面,其中包含一个src长度大约为4000个字符的图像,我看到该请求仍然通过Fiddler成功传输而没有任何截断。这适用于Internet Explorer 9,10和11.所以看起来这个限制不适用于这种情况吗?
示例代码:
<html>
<body>
<img src="http://somehost.com/x=about-4000-char-url..." />
</body>
</html>
使用JavaScript创建图片的示例代码:
var url = 'http://somehost.com/x=about-4000-char-url...';
var img = new Image;
img.src = url;
window.customImage = img;