uniapp 微信小程序 输入框限制输入2位小数

此处input的typedigit

bash 复制代码
<input v-model="amount" type="digit" placeholder="请填写金额" @input="checkAmount"/>
bash 复制代码
data() {
	return {
		amount:""
	}
}
bash 复制代码
methods: {
	// 小数点后2位
	checkAmount(e){
		e = (e.match(/^\d*(\.?\d{0,2})/g)[0]) || null
		this.$nextTick(() => {
			this.amount = e
		})
	},
}
相关推荐
软件聚导航4 小时前
马年、我用AI写了个“打工了马” 小程序
人工智能·ui·微信小程序
行走的陀螺仪5 小时前
uni-app + Vue3编辑页/新增页面给列表页传参
前端·vue.js·uni-app
森之鸟7 小时前
uniapp——配置鸿蒙环境,进行真机调试
华为·uni-app·harmonyos
2501_9159184110 小时前
常见 iOS 抓包工具的使用,从代理抓包、设备抓包到数据流抓包
android·ios·小程序·https·uni-app·iphone·webview
handsome091611 小时前
uniapp打包的app,报This app was built with the iOS 18.1 SDK解决方案
ios·uni-app
yqcoder12 小时前
uni-app 之 下拉刷新
运维·服务器·uni-app
大黄说说14 小时前
微信商城小程序怎么弄?微信购物小程序怎么开通
微信小程序
IT教程资源D14 小时前
[N_160]基于springboot,vue校园论坛系统
mysql·vue·前后端分离·springboot校园论坛·校园论坛交流系统
你的眼睛會笑15 小时前
微信小程序 SpeechSynthesizer 实战指南
微信小程序·小程序·notepad++
你的眼睛會笑15 小时前
微信小程序定位权限获取最佳实践
微信小程序·小程序·notepad++