码迷,mamicode.com
首页 > Web开发 > 详细

判断jQuery是否加载,如果未加载则加载

时间:2019-12-02 13:29:14      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:tee   typeof   nbsp   href   else   nts   http   分享   def   

一般情况返回的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是否加载,如果未加载则加载

标签:tee   typeof   nbsp   href   else   nts   http   分享   def   

原文地址:https://www.cnblogs.com/wangzhaobo/p/11969791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!