1 页面跳转(原页面跳转)
(1)a标签实现
<a href="https://segmentfault.com/u/webxejir">旭东怪的博客</a>
(2)window.location.href实现
window.location.href="https://segmentfault.com/u/webxejir";
2 页面跳转 (打开新标签页)
(1)a标签实现
<a href="https://segmentfault.com/u/webxejir" target="_blank">旭东怪的博客</a>
(2)window.open()实现
window.open("https://segmentfault.com/u/webxejir");
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。