왼쪽 메뉴를 클릭하면 오른쪽에 다른 웹 페이지를 불러옵니다.

3660 단어
첫 번째:https://blog.csdn.net/qq_38822390/article/details/81014417




    ajax 
    
    
    




$(function() { $(".userMenu").on("click", "li", function() { var sId = $(this).data("id"); // data-id window.location.hash = sId; // loadInner(); }); function loadInner() { var sId = window.location.hash; var pathn, i; switch(sId) { case "#center": pathn = "user_center.html"; i = 0; break; case "#account": pathn = "user_account.html"; i = 1; break; case "#trade": pathn = "user_trade.html"; i = 2; break; case "#info": pathn = "user_info.html"; i = 3; break; default: pathn = "user_center.html"; i = 0; break; } $("#content").load(pathn); // $(".userMenu li").eq(i).addClass("current").siblings().removeClass("current"); // } var sId = window.location.hash; loadInner(); });

제2종



    
    
    
    Hello World
    
    






$(document).ready(function(){ $('#myTab a[href="#second"]').tab('show') });

좋은 웹페이지 즐겨찾기