本文介绍了符号的jquery验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我需要删除字符串第一个字符中的特殊字符。怎么做?

Hi,
I need to remove special characters in the first character of the string. How to do this?

推荐答案

var string = "I'm a very^ we!rd* Str!ng.";






一旦通过以下链接..



[]


<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <script type="text/javascript">

        function tSpeedValue() {
            debugger;
            var x = document.getElementById("TextBox1").value;

            alert(x);


        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <input ID="TextBox1"  onblur="tSpeedValue(this)"></input>
    </div>
    </form>
</body>
</html>







[]


这篇关于符号的jquery验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 10:03