JavaScript jQuery 判断 id 或元素是否存在

kirkland · 2022-04-20 19:55:57 · 热度: 14

我们可以通过呢 jQuerylength 属性判断 id 是否存在:

实例

if ($('#myElement').length > 0) { // 存在 }
也可以写成插件形式,如下,插件可以判断元素是否存在

实例

$.fn.exists = function(callback) { var args = [].slice.call(arguments, 1); if (this.length) { callback.call(this, args); } return this; }; // 使用方法 $('div.test').exists(function() { this.append('<p>存在!</p>'); }); ​

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册