如果存在于JS和jQuery中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果存在于JS和jQuery中相关的知识,希望对你有一定的参考价值。
How to know if an element exists in JS (and jQuery).
// Pure javascript if(document.getElementById('example').length == 0){} // no element found // jQuery if($('element').length == 0){} // no element found
以上是关于如果存在于JS和jQuery中的主要内容,如果未能解决你的问题,请参考以下文章
Angular.js 学习二---$scope和$rootScope,Angular模块的run方法,依赖注入中代码压缩