Respostas:
Você também pode tentar isso em javascript simples
"1234".slice(0,-1)
o segundo parâmetro negativo é um deslocamento do último caractere, então você pode usar -2 para remover os últimos 2 caracteres, etc.
Por que usar o jQuery para isso?
str = "123-4";
alert(str.substring(0,str.length - 1));
Obviamente, se você deve:
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 e @GolezTrol forneceram os melhores métodos para usar. Pessoalmente, prefiro usar "slice ()". É menos código e você não precisa saber quanto tempo uma string é. Apenas use:
//-----------------------------------------
// @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));
Você pode fazer isso com JavaScript simples:
alert('123-4-'.substr(0, 4)); // outputs "123-"
Isso retorna os quatro primeiros caracteres da sua sequência (ajuste 4
para atender às suas necessidades).