Once again, I encourage anyone joining in the middle of this series to start at the beginning as each article builds on previous information. The tag archive fo...
var func=function(){console.log("test")};$("div").data("test",func);$("div").data("test")();输出结果是test注意:data方法是jquery中的方法不是原生js里面的方法js原生的dataset方法var func......