Respuestas:
También puedes probar esto en JavaScript simple
"1234".slice(0,-1)
el segundo parámetro negativo es un desplazamiento del último carácter, por lo que puede usar -2 para eliminar los últimos 2 caracteres, etc.
¿Por qué usar jQuery para esto?
str = "123-4";
alert(str.substring(0,str.length - 1));
Por supuesto si debes:
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 y @GolezTrol proporcionaron los mejores métodos para usar. Personalmente, prefiero usar "slice ()". Es menos código, y no tienes que saber cuánto dura una cadena. Solo usa:
//-----------------------------------------
// @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));
Puedes hacerlo con JavaScript simple:
alert('123-4-'.substr(0, 4)); // outputs "123-"
Esto devuelve los primeros cuatro caracteres de su cadena (ajústelos 4
según sus necesidades).