form表单域

<form action="url地址" method="get/post" name="表单名称">
		<label for="username" >姓名:</label>
		<input type="text" id="username" name="username" />

		<label for="pwd" >密码:</label>
		<input type="password" id="pwd" name="pwd" />

		<input type="submit"/>
		<input type="reset"/>
</form>

猜你喜欢

转载自blog.csdn.net/baidu_24743861/article/details/107875740