How do I remove the first character from a link's text with jQuery?

前端 未结 4 1554
星月不相逢
星月不相逢 2021-01-04 03:46

I want to remove first character from link\'s text with jQuery.

 +123.23 
 -13.23          


        
4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-04 03:53

    // get the current text
    text1 = $(".test1").html();
    // set the text to the substring starting at the third character
    $(".test1").html(text1.substring(2)); // extract to the end of the string
    
    text2 = $(".test2").html();
    $(".test2").html(" " + text2.substring(2)); // looks like you want to keep the leading space
    

提交回复
热议问题