text 使列可单击

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 使列可单击相关的知识,希望对你有一定的参考价值。

// make entire BB column clickable with the link contained within - col needs 'col-link' applied to it.
jQuery(document).ready(function() {
  jQuery('.col-link .fl-col-content').each(function() {
    var callout_link = jQuery(this).find('a').first().attr('href');
    jQuery(this).wrapInner('<a></a>');
    jQuery(this).find('a').first().attr('href',callout_link);
  }); 
});	

以上是关于text 使列可单击的主要内容,如果未能解决你的问题,请参考以下文章