我想用jQuery删除链接文本中的第一个字符.
<span class="test1"> +123.23 </span>
<span class="test2"> -13.23 </span>
Run Code Online (Sandbox Code Playgroud)
我想从jQuery中删除"+"和" - ".
输出:
<span class="test1"> 123.23 </span>
<span class="test2"> 13.23 </span>
Run Code Online (Sandbox Code Playgroud)
小智 40
var val = $("span").html();
$("span").html(val.substring(1, val.length));
Run Code Online (Sandbox Code Playgroud)
cle*_*tus 24
$("span.test1, span.test2").each(function() {
$(this).text($(this).text().replace(/[+-]/, ""));
});
Run Code Online (Sandbox Code Playgroud)
// 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
Run Code Online (Sandbox Code Playgroud)