javascript和jquery中检查函数是否存在
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript和jquery中检查函数是否存在相关的知识,希望对你有一定的参考价值。
在javascript和jquery中,如何检查呢?
javascript中:
// javascript function
function myFunction()
if(window.myFunction)
document.writeln(‘myFunction exists’);
else
document.writeln(‘myFunction does not exist’);
jqury中
if( jQuery.isFunction(jQuery.fn.myFunction) )
jQuery(document).myFunction();
以上是关于javascript和jquery中检查函数是否存在的主要内容,如果未能解决你的问题,请参考以下文章
javascript 检查是否在viewport中 - jQuery