Created
February 27, 2014 14:49
-
-
Save roowe/9251510 to your computer and use it in GitHub Desktop.
data.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
<form name="input" action="/test.php" method="post"> | |
I have a bike: | |
<input type="checkbox" name="vehicle1" value="Bike" /> | |
<br /> | |
I have a car: | |
<input type="checkbox" name="vehicle2" value="Car" /> | |
<br /> | |
I have an airplane: | |
<input type="checkbox" name="vehicle3" value="Airplane" /> | |
<br /><br /> | |
<input type="submit" name="submit1" value="Submit1" /> | |
<input type="submit" name="submit2" value="Submit2" /> | |
</form> | |
<p>如果您点击 "Submit" 按钮,您将把输入传送到名为 html_form_action.asp 的新页面。</p> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment