x
 
<!DOCTYPE html>
<html>
<body>
<h1>input src 属性</h1>
<p>单击图像,您的输入将被发送到服务器上名为“action_page.php”的页面。</p>
<form action="/demo/action_page.php">
  <label for="fname">名字:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="image" src="/i/pic/submit.jpg" alt="Submit" width="48" height="48">
</form>
<p><b>注释:</b>默认情况下,image 输入类型会发送激活图像按钮的那次单击的 X 和 Y 坐标。</p>
</body>
</html>