这将使用chrome创建一条包含电子邮件中所有输入值的消息,但在IE中却没有,我无法找出原因?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Name Entry</title>
</head>
<body>
<div>
<br/>
<form method="post"
action="mailto:cgi55@yahoo.com?subject=from_unit4"
enctype="text/plain"
style="border: 1px solid #0040ff;
width: 400px;
height: 60px;
align: center;
background: #ffff00;
text-align: center;"
>
<br/>
Name: <input type="text" name="Name">
<input type="submit" value="Submit">
<input type="reset" value="Clear">
</form>
</div>
</body>
</html>