本文介绍了如何通过jQuery删除值的反斜杠?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
if $(this).val()反斜杠在jQuery中删除反斜杠。如何?
1111 \ / 11 \ / 11
- > 1111/11/11
if $(this).val() have backslash remove backslash in it by jQuery. how is it?1111\/11\/11
-> 1111/11/11
推荐答案
$(this).val().replace(/\\/g, '');
你必须使用两个反斜杠来获得\字符。单个反斜杠用于控制字符,例如\r \ n等。使用双反斜杠转义并为您提供所需的内容。
You have to use two backslashes to get the \ character. A single backslash is used for control characters such as \r \n etc. Using the double backslash escapes this and gives you what you want.
这篇关于如何通过jQuery删除值的反斜杠?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!