<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("email").name;
alert(x);
}
</script>
</head>
<body>
<form>
Email: <input type="text" id="email" name="email">
</form>
<button type="button" onclick="displayResult()">显示名称</button>
</body>
</html>