判断jQuery是否加载,如果未加载则加载
Posted wangzhaobo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断jQuery是否加载,如果未加载则加载相关的知识,希望对你有一定的参考价值。
一般情况返回的js这么写history.go(-1)
但是如果是从别人分享过来的,就没有反应
所以就做个判断,没有上一页就返回首页
if (typeof jQuery == ‘undefined‘) { // jQuery 未加载 var fileref=document.createElement(‘script‘)//创建标签 fileref.setAttribute("type","text/javascript")//定义属性type的值为text/javascript fileref.setAttribute("src", ‘http://libs.baidu.com/jquery/1.9.1/jquery.min.js‘)//文件的地址 document.getElementsByTagName("head")[0].appendChild(fileref) } $(‘.back‘).click(function(e){ e.preventDefault(); if(document.referrer===""){ window.location.href="/" }else{ history.go(-1) } });
以上是关于判断jQuery是否加载,如果未加载则加载的主要内容,如果未能解决你的问题,请参考以下文章
jQuery动态加载程序-如果jQ未定义或不存在,则使用纯js javascript加载jQuery