使用Vue.js实现判断数值大小
1、效果:实现按钮获取随机值,并判断如果message>1则输出 Not Sorry ;如果message<1 则输出 Sorry2、代码如下:<!DOCTYPE html><html><head><meta charset="utf-8"><title>title</title></head><
·
1、效果:实现按钮获取随机值,并判断如果message>1则输出 Not Sorry ;如果message<1 则输出 Sorry
2、代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>title</title>
</head>
<body>
<!-- 实现按钮获取随机值,并判断如果message>1则输出 Not Sorry
如果message<1 则输出 Sorry-->
<div id="app">
<input type="button" value="判断" @click="Math()" >
<div v-if="message<1">Sorry</div>
<div v-else>Not Sorry</div>
</input>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app = new Vue({
el:"#app",
data:{
message:2,
},
methods:{
Math:function(){
this.message = Math.random();
alert(this.message);
}
}
})
</script>
</body>
</html>
3、效果图
更多推荐
已为社区贡献1条内容
所有评论(0)