html:<li>是动态添加的现在每次点击 this的指向 总是输出-1
1 回答
交互式爱情
TA贡献1712条经验 获得超3个赞
time_option_reduce方法中的this一直指向的是window,可以修改如下
<span class="time_option_reduce" onclick="time_option_reduce(this)" ></span>
function time_option_reduce(_this) {
console.log($(_this).parent().index());
}
添加回答
举报
0/150
提交
取消