截断jQuery中连字符之前的单词

时间:2015-07-02 05:06:22

标签: jquery html

我很好奇如何在一个单词中截断连字符前面的单词,例如:

[Jazz] - The 1970's Blues

会变成......

The 1970's Blues

我知道如何在PHP中执行此操作,并且有很多函数可以在PHP中实现这一点...我只是对如何使用jQuery感到好奇!

3 个答案:

答案 0 :(得分:2)

您可以尝试以下操作:

var text="[Jazz] - The 1970's Blues";
alert(text.substring(text.indexOf("-")+1));

答案 1 :(得分:1)

试试这个

var msg="[Jazz] - The 1970's Blues";

msg=msg.split("-")[1];

console.log(msg)

答案 2 :(得分:1)

HTML代码:

<p>[Jazz] - The 1970's Blues</p>

<强>的jQuery

$(document).ready(function(){
    $("p").click(function(){
        alert($(this).text().split('-')[1]); //The 1970's Blues
    });
});