想把JS的匿名函数改为普通函数,求助如何传递参数
现在有类似这样的代码
mui(document).on("tap", ".delete", function() {
console.log('mui(document).on("tap", ".delete")');
commentId = this.getAttribute('comment-id');
console.log(commentId);
deleteLetterComment(commentId);
});
我想把这里面的function提出来复用。我知道可以这么写
mui(document).on("tap", ".delete", beforeDeleteLetterComment);
function beforeDeleteLetterComment() {
console.log('mui(document).on("tap", ".delete")');
commentId = this.getAttribute('comment-id');
console.log(commentId);
deleteLetterComment(commentId);
}
然而还有一段代码需要传递参数
function beforesubmitComment(str)
{
}
我想也这样用,但是直接写mui(document).on("tap",".delete",beforesubmitComment(str));
不生效
求助该怎么写。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
mui(document).on("tap",".delete",function() { beforesubmitComment(str); });
能想到的方法就是上面两位写的了,其他方法暂时不晓得
判断argument的长度,有就拿来用,没有就是默认空参