我想在第二个链接处于活动状态时共享一个页面(例如“http://mypage#green-color”)。
我试图添加到第二个链接onClick="window.location='#green-color';"
属性。它更改了浏览器地址窗口中的 URL,但我无法与他人共享。
<a href="#" id="all">All Colors</a>
<a href="#green" id="green-color">Green Color</a>
<div id="red"></div>
<div id="green"></div>
页面的两种状态:
$( "#all" ).click(function() {
$( "#red" ).show(200);
});
$( "#green-color" ).click(function() {
$( "#red" ).hide(200);
});