我正在尝试检查点击的li元素是否具有'update'类。
$('li.category').live('click', function(event)
{
//my code here
});
我试过了:
if (($(event.target).hasClass('update')))
if ($(this).hasClass('update'))
两者总是返回false。
我该怎么做?
答案 0 :(得分:1)
if ($(this).hasClass('update'))
应该可以正常工作。您确定要测试的元素是否具有update
类?这是一个例子: