使用javascript匹配多行中的空白字符和非字符字符

时间:2015-11-04 18:39:55

标签: javascript regex whitespace

我想在多个输入字段中匹配'/ s'和'/ W'。 这是我的HTML代码:

@section('description', 'this is the contact page')

这是我的javascript代码:

<div class="center">
    <div class="fname">    
        <label id="fnamelabel">First Name: </label>
        <input id="fname" placeholder="First Name"></input>
    </div>
    <div class="lname">
        <label id="lnamelabel">Last Name: </label>
        <input id="lname" placeholder="Last Name"></input>
    </div>
    <div class="button">
        <input id="button" type="button" value="Submit" onclick="validateField()">
    </div>

如何减少'if'循环?

感谢。

0 个答案:

没有答案