标签: javascript html custom-data-attribute
可能重复: Is there a limit to the length of HTML attributes?
我想使用数据属性在网页上的脚本之间传递JSON。例如,div标签可能如下所示:
<div data-choices='{"name1":"Jack","name2":"Jeff"," name3":"Zoe"}' />
这与dojo工具包对选项的作用类似,但在我的情况下,JSON字符串可能会更长。
数据属性是否有任何大小限制(W3C推荐,浏览器限制等)?