<form>元素在IE中不起作用但在chrome中

时间:2017-07-25 23:34:46

标签: html forms google-chrome internet-explorer input

这将使用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>

0 个答案:

没有答案