如果创建条件,如果标记a
(链接)中的某些内容在title
中无效,否则如果您没有使用该脚本的描述...
例如:
if ( $('a').attr('title') == 'on any text' ) {
// do this
} else {
// do that
}
答案 0 :(得分:0)
所以..你想检查锚标签是否有标题?我对吗 ? 那么这是一个解决方案..
if($('a').attr('title'))
alert($('a').attr('title'));
else
alert('There is no title');