首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

超出篇幅隐藏

2013-02-19 
超出字数隐藏script typetext/javascriptfunction hideNum(thisId,showLeng){var nowId document.g

超出字数隐藏
<script type="text/javascript">
function hideNum(thisId,showLeng){
       var nowId = document.getElementById(thisId);
       var nowLeng = nowId.innerHTML.length;
        if(nowLeng > showLeng){
            var nowWord = nowId.innerHTML.substr(0,showLeng)+'...';
            nowId.innerHTML = nowWord;
         }
}
</script>
      <div id="test">超过十个字我没了!~</div>
<script>
         hideNum("test",10)
</script>

热点排行