码迷,mamicode.com
首页 > Web开发 > 详细

input在HTML校验正负数特殊字符

时间:2020-12-16 11:47:57      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:特殊   swa   dex   margin   index   min   height   try   indexof   

swal({
title: ‘‘,
html:
‘<p style="font-weight:bold;">Please input adjusted amount</p>‘ +
‘<input type="text" style="width:310px;height:35px;" id="adjustedAmountInput" placeholder="+500/-500" onKeyUp="if(isNaN(value)&&!/^-$/.test(value))value=\‘\‘;if(!/^[+-]?\.{0,1}\d{0,1}$/.test(value))value = value.replace(/\.\d{2,}$/,value.substr(value.indexOf(\‘.\‘),3))">‘ +
‘</br></br><p style="font-weight:bold;">Comment</p>‘ +
‘<textarea id="commentTextArea" type="text" name="fname" style="width:380px;height:125px;resize:none;margin-bottom:-15px;" placeholder="This is the reminder for clicking Edit "/></textarea>‘ ,
showCancelButton: true,
confirmButtonText: ‘SAVE‘,
cancelButtonText: ‘CANCEL‘,
}).then((isConfirm) => {
try {

 

 


主要需要注意if判断,转义字符

 

‘<input type="text" style="width:310px;height:35px;" id="adjustedAmountInput" placeholder="+500/-500" onKeyUp="if(isNaN(value)&&!/^-$/.test(value))value=\‘\‘;if(!/^[+-]?\.{0,1}\d{0,1}$/.test(value))value = value.replace(/\.\d{2,}$/,value.substr(value.indexOf(\‘.\‘),3))">‘ +

input在HTML校验正负数特殊字符

标签:特殊   swa   dex   margin   index   min   height   try   indexof   

原文地址:https://www.cnblogs.com/mmit/p/14116581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!