回答:
プレーンなJavaScriptでこれを試すこともできます
"1234".slice(0,-1)
負の2番目のパラメーターは最後の文字からのオフセットなので、-2を使用して最後の2文字を削除できます。
なぜjQueryを使用するのですか?
str = "123-4";
alert(str.substring(0,str.length - 1));
もちろん、必要な場合:
Substr w / jQuery:
//example test element
$(document.createElement('div'))
.addClass('test')
.text('123-4')
.appendTo('body');
//using substring with the jQuery function html
alert($('.test').html().substring(0,$('.test').html().length - 1));
@skajfesと@GolezTrolは、使用する最良の方法を提供しました。個人的には「slice()」を使う方が好きです。コードは少なく、文字列の長さを知る必要はありません。ただ使用する:
//-----------------------------------------
// @param begin Required. The index where
// to begin the extraction.
// 1st character is at index 0
//
// @param end Optional. Where to end the
// extraction. If omitted,
// slice() selects all
// characters from the begin
// position to the end of
// the string.
var str = '123-4';
alert(str.slice(0, -1));
あなたはプレーンなJavaScriptでそれを行うことができます:
alert('123-4-'.substr(0, 4)); // outputs "123-"
これにより、文字列の最初の4文字が返されます(4
ニーズに合わせて調整してください)。