我正在尝试使用console.log(“item”)来确定我的选择器是否正确,尝试“追踪”选择器的最佳方法是什么?
console.log(my-jQuery-selector);
答案 0 :(得分:6)
您也可以直接在控制台中输入。例如,我可以在控制台中写:
var test = $('.myselector'); /return
test /return
并输出结果。
答案 1 :(得分:2)
试试这个:
$(function() {
var my_jQuery_selector = $('.tabs ul li'); //or any other selector
console.log(my_jQuery_selector);
});