当前位置:嗨网首页>书籍在线阅读

05-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

4.1.2 解决方案

(function($) {
   $(document).ready(function() {
   $('a')
     .filter(function() {
        var href = $(this).attr('href');
        //规范化URL
        if ( !jQuery.support.hrefNormalized ) {
          var loc = window.location;
          href = href.replace( loc.protocol + '//' + loc.host + loc.pathname,
'');
        }
        // 这个锚标记的形式为<a href="#hash">
        return ( href.substr(0, 1) == '#' );
     })
     .click(function() {
        // 特殊单击处理程序代码
     });
   });
})(jQuery);