Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 html5 的新手。我有一个导航标签。我想用左侧的导航创建一个垂直分割。
如果用户单击导航中的链接,页面将显示在标签的右侧。
我该怎么做呢?
在 jQuery 中,你会做这样的事情:
$("nav > a").click(function(){ var url = $(this).attr("href"); $("section#content").load(url); return false; });