html_and_vue/vue/13_收集表单数据/收集表单数据.html

61 lines
2.1 KiB
HTML
Raw Normal View History

2023-09-18 15:26:15 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script type="text/javascript" src="../js/vue.js"></script>
</head>
<body>
<div id="root">
2023-09-22 09:36:06 +00:00
<form @submit.prevent="demo">
2023-09-18 15:26:15 +00:00
<label for="demo">账号:</label>
2023-09-22 09:36:06 +00:00
<input type="text" id="demo" v-model="userInfo.account"><br>
2023-09-18 15:26:15 +00:00
<label for="pwd">密码:</label>
2023-09-22 09:36:06 +00:00
<input type="password" id="pwd" v-model="userInfo.password"><br>
2023-09-18 15:26:15 +00:00
性别:
2023-09-22 09:36:06 +00:00
<input type="radio" name="gender" v-model="userInfo.gender" value="male">
<input type="radio" name="gender" v-model="userInfo.gender" value="female"><br>
2023-09-18 15:26:15 +00:00
hobby:
2023-09-22 09:36:06 +00:00
learning <input type="checkbox" v-model="userInfo.hobby" value="learning">
gamming <input type="checkbox" v-model="userInfo.hobby" value="gamming">
shopping <input type="checkbox" v-model="userInfo.hobby" value="shopping"><br>
2023-09-18 15:26:15 +00:00
books
2023-09-22 09:36:06 +00:00
<select v-model="userInfo.books">
2023-09-18 15:26:15 +00:00
<option value="">chose your book</option>
<option value="swdj">死亡赌局</option>
<option value="cjsj">超级手机</option>
<option value="xyxyx">逍遥小医仙</option>
<option value="jysz">绝印神座</option>
</select><br>
Others:
<textarea ></textarea><br>
2023-09-22 09:36:06 +00:00
<input type="checkbox" v-model="userInfo.agree">阅读并接受<a href="#">《用户协议》</a><br>
<input type="submit">
2023-09-18 15:26:15 +00:00
</form>
</div>
</body>
2023-09-22 09:36:06 +00:00
<script type="text/javascript">
Vue.config.productionTip = false
const vm = new Vue({
el:'#root',
data:{
userInfo:{
account:"",
password:"",
gender:"male",
books:"swdj",
hobby:[],
agree:""
}
},
methods: {
demo(){
console.log(JSON.stringify(this.userInfo))
}
},
})
</script>
2023-09-18 15:26:15 +00:00
</html>