【uniapp】uniapp中不常用的功能:


一、设置打开页面自动到最下面

在这里插入图片描述

onLoad() {
    
    
	uni.pageScrollTo({
    
    
		scrollTop: 999999,
		duration: 0
	})
},
二、跳转到别的网页(如百度)
<web-view :src="url"></web-view>

在这里插入图片描述

三、input手机键盘回车

@confirm='loginFunM()' // loginFunM()调用的登录方法

在这里插入图片描述

四、uniapp遮罩层实现以及禁止页面滚动

在这里插入图片描述
在这里插入图片描述

@touchmove.stop.prevent
或者
catchtouchmove="true"

猜你喜欢

转载自blog.csdn.net/weixin_53791978/article/details/128077164