How to delete last character from a string using jQuery?

后端 未结 5 1219
夕颜
夕颜 2020-12-22 16:58

How to delete last character from a string for instance in 123-4- when I delete 4 it should display 123- using jQuery

5条回答
  •  独厮守ぢ
    2020-12-22 17:37

    You can also try this in plain javascript

    "1234".slice(0,-1)
    

    the negative second parameter is an offset from the last character, so you can use -2 to remove last 2 characters etc

提交回复
热议问题