如何在不强制用户写入的情况下/
在末尾添加字符?URL
我开始像这个美妙的网站SWFAddress
一样使用JavaScript
和jQuery
直接(不使用) 。Flash
所以是这样的:
http://mysite.com/section
// and after click to a specific <a ="#">button</a> get
http://mysite.com/section/#/sub-content
// instead of
http://mysite.com/section#/sub-content
我已经开始使用这段代码来做到这一点:
$(".time_dot, .time_year").click (function () {
onClickEvent (this);
});
function onClickEvent (dom) {
var timer = setTimeout (function () {
SWFAddress.setValue($(dom).parent().attr("id"));
}, 200);
// do something else
}
该setTimeout
方法用于避免<a>
按钮覆盖该SWFAddress.setValue
方法,但我不知道如何将 to更改URL address
为.url.com/content#/...
url.com/content/#/...
我怎样才能做到这一点?