2016-11-30 12 views
0

ショーdivの部分文字列()テキストの後

var x= $('div.text').text(); 
 
var first15=x.substring(0, 55); 
 
$(".text").html(first15); 
 

 
if ($(".text").html(first15).length == 55) { 
 
    $('.ShowText').show(); 
 

 
}
.text 
 
{ 
 
    width:100px; 
 
    height:100px; 
 
    border:1px solid #000; 
 
    overflow: hidden; 
 
    font-size:10px; 
 
    position:relative; 
 
} 
 

 
.ShowText 
 
{ 
 
    display:none; 
 
    color:red; 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<div class="text">.Why do we use it? 
 
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). 
 
    
 

 
</div> 
 
<div class="ShowText">Show more...</div>

こんにちは、 は、テキストが55個の文字を持っている場合にのみ、()クラス= "ShowText" と表示することは可能ですか? しかし、私は追加 "=" 常に "ShowText" を示して答え

+0

($( "。text").html(first15).length = 55) – PiotrS

答えて

2

ため

おかげでこの1つだけ

(first15.length == 55) 

ここ

length

$(".text").html(first15).length 
ため、長さを使用しjqueryの方法がありますその要素の要素の数が1であるため、1が55と等しくないことを返します。

+0

ありがとう、これは私には完璧です:) – PiotrS

関連する問題