我正在尝试检查单击的 li 元素是否具有“更新”类。
$('li.category').live('click', function(event)
{
//my code here
});
我试过了:
if (($(event.target).hasClass('update')))
if ($(this).hasClass('update'))
两者总是返回false。
我怎样才能做到这一点?
我正在尝试检查单击的 li 元素是否具有“更新”类。
$('li.category').live('click', function(event)
{
//my code here
});
我试过了:
if (($(event.target).hasClass('update')))
if ($(this).hasClass('update'))
两者总是返回false。
我怎样才能做到这一点?