如何在jquery中使用substr()函数?

前端之家收集整理的这篇文章主要介绍了如何在jquery中使用substr()函数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在这个脚本中使用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);
    });
});
原文链接:https://www.f2er.com/jquery/182515.html

猜你在找的jQuery相关文章