如何在这个脚本中使用substr函数我需要substr(0,25);
<a class="dep_buttons" href="#"> something text something text something text something text something text something text </a> $('.dep_buttons').mouSEOver(function(){ if($(this).text().length > 30) { $(this).stop().animate({height:"150px"},150); } $(".dep_buttons").mouSEOut(function(){ $(this).stop().animate({height:"40px"},150); }); });
解决方法
从字符串中提取字符:
var str = "Hello world!"; var res = str.substring(1,4);
res的结果将是:
ell
http://www.w3schools.com/jsref/jsref_substring.asp
$('.dep_buttons').mouSEOver(function(){ $(this).text().substring(0,25); if($(this).text().length > 30) { $(this).stop().animate({height:"150px"},150); }); });