페이지 제목 너무 길게 조정
1521 단어 제목
<!-- -->
<script type="text/javascript">
$(function(){
$('.resize').each(function(){
var name_length = $(this).text().length - $(this).children().text().length -3;
var target = $(this).html().substr(0,name_length);
var rest = $(this).html().substr(name_length);
// console.log('target=> ' + target);
// console.log('rest=> ' + rest);
while($(this).height() > 21){
target = target.substr(0, target.length-4) + '...';
$(this).html(target + rest);
}
// console.log('target=> ' + target);
})
})
</script>
$('div.clearfix.top').each(function(){
var target = $(this).find('a.title').html();
// console.log('target=> ' + target);
while($(this).height() > 28){
target = target.substr(0, target.length-4) + '...';
$(this).find('a.title').html(target);
}
// console.log('target=> ' + target);
})
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
2017.3.15 심사(황금) 사고 기록이 문제는 귀속의 성질을 만족시키기 때문에 ac자동기+창고로 처리할 수 있다 그런데 알을 합치면 틀림없이 점이 하나 있는데, #include #include using namespace std; #include st...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.