1. 程式人生 > >列表資料只顯示部分其他用省略號代替

列表資料只顯示部分其他用省略號代替

列表程式碼

<tr>
    <td>
        <div class="f-content" style="height: 50px">
	<a href=" " title="<?=$showbfinfo?>" class='content'>
	      <?=$showbfinfo?>
        </a>
	</div>
    </td>
</tr>

js程式碼

<script type="text/javascript">
	$(document).ready(function () {
		$(".f-content").each(function(i){
			var fh=$(this).height();
			var $p=$(this).find('a');
			var h=$p.outerHeight();
                        while ($p.outerHeight() > fh) {
				$p.text($p.text().replace(/(\s)*([a-zA-Z0-9]+|\W)(\.\.\.)?$/, "..."));
			}
		})
	})
</script>