href
<%= Page.ResolveUrl("~/Pages/Entry") %>
?
, http://your-website.com/
http://your-website.com/Pages/Entry
, , - URL-, window.location.href
.
window.location.href
'homepage' href
:
$(document).ready(function () {
var url = window.location.href,
entryUrl = $('.navbar a#A1').attr('href');
alert(
"browser location: " + url + "\n" +
"entry location: " + entryUrl
);
});
, - - :
browser location: /
entry location: /Pages/Entry
.navbar
, :
$(document).ready(function () {
var url = window.location.href;
$('.navbar .nav').find('.active').removeClass('active');
if (url === '/') {
$('.navbar .nav li:first > a').addClass('active');
} else {
$('.navbar .nav li a').each(function () {
if (this.href == url) {
$(this).parent().addClass('active');
}
});
}
});