哪位高手帮忙解析一下这段js代码,弄不明白啊,也就是说每行代码大概都是什么意思啊
答案:1 悬赏:10 手机版
解决时间 2021-03-31 12:34
- 提问者网友:niaiwoma
- 2021-03-31 00:39
哪位高手帮忙解析一下这段js代码,弄不明白啊,也就是说每行代码大概都是什么意思啊
最佳答案
- 五星知识达人网友:往事埋风中
- 2021-03-31 01:48
//设置变量urlstr为当前地址
var urlstr = location.href;
//设置变量urlstatus为false
var urlstatus=false;
//循环遍历HTML DOM里id为nav_top_top 下边所有的a标签
$("#nav_top_top a").each(function () {
//如果当前ur与a标签href属性相等并且当前href属性不为空
if ((urlstr + '/').indexOf($(this).attr('href')) > -1&&$(this).attr('href')!='') {
//为当前a标签添加active_nav_top样式,设置urlstatus变量为true
$(this).addClass('active_nav_top'); urlstatus = true; } else {
//否则为当前a标签移除active_nav_top样式
$(this).removeClass('active_nav_top'); } });
//如果urlstatus为false 为html dom中id为nav_top 下的第一个a标签添加active_nav_top样式
if (!urlstatus) {$("#nav_top a").eq(0).addClass('active_nav_top'); }
var urlstr = location.href;
//设置变量urlstatus为false
var urlstatus=false;
//循环遍历HTML DOM里id为nav_top_top 下边所有的a标签
$("#nav_top_top a").each(function () {
//如果当前ur与a标签href属性相等并且当前href属性不为空
if ((urlstr + '/').indexOf($(this).attr('href')) > -1&&$(this).attr('href')!='') {
//为当前a标签添加active_nav_top样式,设置urlstatus变量为true
$(this).addClass('active_nav_top'); urlstatus = true; } else {
//否则为当前a标签移除active_nav_top样式
$(this).removeClass('active_nav_top'); } });
//如果urlstatus为false 为html dom中id为nav_top 下的第一个a标签添加active_nav_top样式
if (!urlstatus) {$("#nav_top a").eq(0).addClass('active_nav_top'); }
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯