jq调用

作者: Rosemarry丶 | 来源:发表于2017-11-08 17:05 被阅读0次

    1创建js文件放入

    /**
     * Created by Administrator on 2017/11/8.
     */
    var Global={};
    Global.getPart = function(element,html){
        $(element).load(html)
    }
    

    2>引入jquery

    网上下载
    

    3>调用需要用的

    放入head里面
        <script src="js/jquery-3.2.1.min.js"></script>
        <script src="js/common.js"></script>
    
    放入body里面
    <script>
        $(function(){
            Global.getPart("#head","head.html");
            Global.getPart("#footer","footer.html");
        })
    </script>
    

    相关文章

      网友评论

          本文标题:jq调用

          本文链接:https://www.haomeiwen.com/subject/wqeymxtx.html