Clicking a link display it in Different Div on Same Page

后端 未结 4 487
迷失自我
迷失自我 2020-12-18 17:43

I would like to know if there is a way to be able to click a Link on the navigational Div tag and have it display on the content Div like if i had

4条回答
  •  北荒
    北荒 (楼主)
    2020-12-18 18:12

    Something like this:

    function setContent(div, content)
    {
        getElementById(div).innerHtml = content;
        return false; // return false to ignore the click
    }
    
    a link 
    

提交回复
热议问题