我正在创建一个javascript库,我想知道如何找出用户是否在网页上有jQuery,如果他/她没有,则显示警告。可以
if (!jQuery) { throw new Error("library_name requires jQuery") }可以工作
答案 0 :(得分:2)
if (jQuery) {
alert("jQuery is loaded");
} else {
alert("jQuery is not loaded");
}
如果你没有使用任何其他JavaScript库,你也可以检查'$'而不是'jQuery'
如果未加载则仅提醒:
if (!jQuery) {
alert("jQuery is not loaded");
}
答案 1 :(得分:2)
很高兴在window.onload
中执行此操作:
window.onload = function(){
if(!jQuery){
//alert("!!!")
}
}
答案 2 :(得分:1)
检查jQuery对象是否存在
if (window.jQuery) {
//yes its there
}
答案 3 :(得分:1)
你应该检查jQuery:
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
alert("Jquery is not loaded");
}
</script>