我想用jQuery删除链接文本中的第一个字符。
<span class="test1"> +123.23 </span>
<span class="test2"> -13.23 </span>
我想从jQuery中删除“+”和“ - ”。
输出:
<span class="test1"> 123.23 </span>
<span class="test2"> 13.23 </span>
答案 0 :(得分:40)
var val = $("span").html();
$("span").html(val.substring(1, val.length));
答案 1 :(得分:24)
$("span.test1, span.test2").each(function() {
$(this).text($(this).text().replace(/[+-]/, ""));
});
答案 2 :(得分:7)
// 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
答案 3 :(得分:2)
你可以使用.html()获取/设置HTML并使用.substring()删除第一个字符,我认为现在很清楚,你只需要写一个2(或3)行代码。