为了账号安全,请及时绑定邮箱和手机立即绑定

js中,这种写法的传参怎么解释,涉及什么知识点?

js中,这种写法的传参怎么解释,涉及什么知识点?

慕田峪9158850 2018-12-19 14:15:35
在看ztree树的demo中,看到这样的传参方式$("#addLeaf").bind("click", {isParent:false}, add); var newCount = 1;    function add(e) {        var zTree = $.fn.zTree.getZTreeObj("treeDemo"),        isParent = e.data.isParent,        nodes = zTree.getSelectedNodes(),        treeNode = nodes[0];        console.log(e.data.vip);        if (treeNode) {            treeNode = zTree.addNodes(treeNode, {id:(100 + newCount), pId:treeNode.id, isParent:isParent, name:"new node" + (newCount++)});        } else {            treeNode = zTree.addNodes(null, {id:(100 + newCount), pId:0, isParent:isParent, name:"new node" + (newCount++)});        }        if (treeNode) {            zTree.editName(treeNode[0]);        } else {            alert("叶子节点被锁定,无法增加子节点");        }    };        在第一行代码中,给add函数传入了isParent:false ,而在add行数中,使用e.data.isParent来获取传过来的参数,请问这种写法涉及的知识点事什么?以前没有看到过这样的传参方式。
查看完整描述

1 回答

?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

这种情况翻翻文档就知道了。

.bind( eventType [, eventData ], handler )

第二个参数是eventData
说明如下:

eventData
Type: Anything
An object containing data that will be passed to the event handler.

文档上应该说的很清楚了。


查看完整回答
反对 回复 2019-01-25
  • 1 回答
  • 0 关注
  • 418 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信