加载 页面 中js 方法

js 文件中

var mingchen= mingchen|| {
    init: function (){

  }

};

 

 

文件中

 mingchen.init();

 

 

 

注意问题:

在新加载 页面中      jquery 页面再次加载时      事件有可以不可用,,需要重新再加载

 

具体写法为:

    $(document).on('mouseenter', '唯一标示', function (event) {
     $(this).next().collapse('show');
 }).on('mouseleave', '唯一标示', function (event) {
     $(this).next().collapse('hide');
 });

posted @ 2015-05-13 15:11  无恨星晨  阅读(261)  评论(0编辑  收藏  举报