当前位置: 首页 > 工具软件 > Add To List > 使用案例 >

ul addToList

史劲
2023-12-01
<!DOCTYPE html>
<html>
<head>
	<title></title>
	<script type="text/javascript" src="js/vue.js"></script>
</head>
<body>
	<div id="example">
		<ul v-if="list.length<=10">
			<li v-for="value in list">
				{{value}}
			</li>
		</ul>
		<button v-on:click="addToList">按钮</button>
	</div>

	<script type="text/javascript">
		new Vue({
			el:'#example',
			data:{
				list:[100,200,300]
			},
			methods:{
				addToList(){
					var num=parseInt(Math.random()*100);  //也可以用Math.floor
					this.list.push(num);
				}
			}
		});
	</script>
</body>
</html>

 类似资料:

相关阅读

相关文章

相关问答