问答详情
源自:4-2 jQuery的缓存系统

data好像也有设置 html元素属性

貌似调用.data("key","value") 的话 在html元素上会有 data-key=value这样的属性呀?

提问者:mushishi 2016-05-15 16:04

个回答

  • _莫忘初衷_
    2016-12-12 20:42:37

    <div data-test="this is test" ></div>    $("div").data("test"); //this is test!; 读取H5设置好的data属性是可以的 

  • CUIKingdom
    2016-05-23 22:37:32

    不会的,.data()是将key\value绑定到JQ开辟的内存里,所以不会在html元素上显示