我想使用dotdotdot plugin - 现在,我不希望单独创建所有链接:$("#wrapper").dotdotdot()
。我更愿意能够用“textoverflow_dotdotdot”类来听div,然后自动添加链接。
类似的东西:
$(document).on('DIV WAS ADDED','.textoverflow_dotdotdot', function(){
$(this).dotdotdot();
}
任何想法?
信息:我正在使用jquery 1.7.2
答案 0 :(得分:2)
$(document).bind('ajaxSuccess', function(){
$('.textoverflow_dotdotdot').removeClass('textoverflow_dotdotdot').addClass('dotters').change();
})
$(document).on('change','.dotters',function(){
$(this).dotdotdot();
});
积分去Jashwant; - )