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

data怎么用

1:jQuery.data($("#div"), "blah", 86); 这么写会不会有问题,会不会造成内存泄露? 2:jQuery.data(caches, "blah", 86); 是这样写吗? 3:还是var obj={} jQuery.data(obj, "blah", 86); 这3种写法哪个对?

提问者:Bruce_Ly 2016-03-21 15:43

个回答

  • 德古拉的残魂
    2021-04-23 10:13:31

    $( "body" ).data( "foo", 52 );

    https://api.jquery.com/data/

  • SherlockLu
    2016-03-23 09:16:40

    jQuery.data(caches,"blah",86);