//header HTML var headerHtmls='
' + '
' + '
' + '
' + '' + '
' + '
' + '
' + '' + '
' + '
' + '<
' + '
'; $('#header').html(headerHtmls); //footer HTML var footHtmls='
' + '
' + '
' + ' ' + '
' + '
' + ' ' + '
' + '
' + ' ' + '
' + '
' + ' ' + '
' + '
' + '
' + ' '; $('#footer').html(footHtmls); /** *弹窗切换 **/ $(document).delegate('#nav li','click',function () { var _index = $(this).index(); // debugger console.log(_index); $('#nav>li').eq(_index).addClass('current').siblings().removeClass('current'); });