HTML中form表单详述

form表单


<html>
	<head>
		<meta charset="UTF-8">
		<title>form 表单title>
		
	head>
	<body>
		
		<form action="" method="" enctype="application/x-www-form-urlencoded">
			
			<input type="hidden" name=" id" value="11011" id="id"/>
			
            
           	
           	
            
            
			
			
			<select name="province" id="province" multiple="multiple">
				<option>---请选择---option>
				
	            <option value="001" disabled="disabled">北京市option>
	            <option value="002" selected="selected">上海市option>
	            <option value="003">河南省option>
	        select> 
	         
	        
			<input type="radio" name="sex" value="0" id="female" disabled="disabled" /><label for=" female">label>
			<input type="radio" name="sex" value="1" id="male" checked=" checked"/><label for="male">label> 
			
			<label for="basketball"> 篮球label>
			<label for="pingpang" >乒乓球label>
			<label for="football">足球label>
			
			<input type="file" name="" id="" multiple="multiple" disabled="disabled"/>
			
			<textarea name="" id="" cols="120" rows="50" style="resize: none;" readonly=" readon1y" disabled="disabled">
				郑州大学
			textarea>
			
            <input type="submit" value="提交" id="submit" disabled="disabled" />
            
            <input type="reset" value="重置" id="reset" disabled="disabled" />
            
            <input type="button" value="确认" id="button" disabled="disabled" />
		
		form>
	body>
html>

你可能感兴趣的:(HTML学习)