<code> <textarea name="val"> 白色:80;黑色:90;绿色:100;红色:-80; </textarea> <input type="button" value="check"> <script> // 怎么检测textarea的值完全符合(每一个键值对都需要符合下面这种格式): 白色:80; 这种格式?? </script> </code>
<code> <textarea name="val"> 白色:80;黑色:90;绿色:100;红色:-80; </textarea> <input type="button" value="check"> <script> // 怎么检测textarea的值完全符合(每一个键值对都需要符合下面这种格式): 白色:80; 这种格式?? </script> </code>
<code class="javascript">var re = /^([^:\s;]+:-?\d+;)*$/mg; console.log('白色:60;黑色:50;'.match(re)); console.log('白色:60;;黑色:50;'.match(re)); console.log('蛤蛤:-1;'.match(re)); console.log(''.match(re));</code>
调试在这里 https://regex101.com/r/jK6zG2/2 (会有点慢, 耐心等待加载完)