当前位置 : 主页 > 网页制作 > JQuery >

为什么jQuery不能自动“生活”所有功能?

来源:互联网 收集:自由互联 发布时间:2021-06-15
为什么jQuery不允许click(),bind()和类似的函数自动“实时”工作? 为什么我需要使用live(“click”,functi …如果我想让它工作“live”,而不是点击(function()……?live会占用更多资源吗? 有趣
为什么jQuery不允许click(),bind()和类似的函数自动“实时”工作?

为什么我需要使用live(“click”,functi …如果我想让它工作“live”,而不是点击(function()……?live会占用更多资源吗?

有趣的你应该问.有人写了一篇回答你问题的整篇文章:
http://www.ultimatewebtips.com/why-jquery-live-is-a-bad-option-to-use/

On the surface live and delegate can seem interchangeable. However,
they are not. Live has several serious disadvantages and should never
be used, and this article will explain why.

概述的摘要是:

>您不能将live用于可重用的小部件> stopPropagate()在live中不起作用>生活比较慢> Live不可链接

网友评论