You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
399 B
JavaScript
14 lines
399 B
JavaScript
$(document).ready(function() {
|
|
|
|
$("#nav>li").click(function () {
|
|
$(this).siblings('li').removeClass('current');
|
|
$(this).addClass('current'); //下一个元素显示
|
|
$(this).siblings('li').removeClass('current');
|
|
|
|
var url = $(this).children(".J_menuItem").attr('href');
|
|
$("#J_iframe").attr('src', url);
|
|
return false; //阻止默认事件
|
|
|
|
});
|
|
|
|
}); |