(function (){
var num = parseInt($('body').attr('data-site')) + 1,
theul = $(".submenu li:nth-child(" + num + ") a"),
newNum = num - 1,
theNewUl = $(".submenu li:nth-child(" + newNum + ") a");
console.log(theul);
theul.addClass('activex');
console.log(theNewUl);
theNewUl.addClass('lastsl');
})();
你好,当我尝试运行这个脚本控制台时说:
“未捕获的语法错误,无法识别的表达式:li:nth-child”
虽然我在这个脚本之前链接了 jQuery 源代码,
感谢回答者