小码哥的IT人生

HTML <input> 标签的 src 属性 详解

HTML基础 2022-06-02 12:04:01小码哥的IT人生shichen

HTML <input> 标签的 src 属性

实例

下面的表单拥有两个输入字段以及一个图像形式的提交按钮:

<form action="form_action.php" method="get">
  <p>First name: <input type="text" name="fname" /></p>
  <p>Last name: <input type="text" name="lname" /></p>
  <input type="image" src="submit.jpg" alt="Submit" align="right" />
</form>

 

完整实例【亲自试一试】:

<html>
<body>
<form action="/demo/demo_form.php" method="get">
  <p>First name: <input type="text" name="fname" /></p>
  <p>Last name: <input type="text" name="lname" /></p>
  <input type="image" src="/i/eg_submit.jpg" alt="Submit" />
</form>
<p>请在这幅图像上单击,输入会发送到服务器上名为 "demo_form.php 的页面。</p>
<p class="note"><span>注释:</span>如果 type 属性设置为 image,当用户单击图像时,浏览器将以像素为单位,将鼠标相对于图像边界的偏移量发送到服务器,其中包括从图像左边界开始的水平偏移量,以及从图像上边界开始的垂直偏移量。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

src 属性只能与 <input type="image"> 配合使用。它规定作为提交按钮显示的图像的 URL。

src 属性必须与 <input type="image"> 同时使用。

语法

<input src="value">

属性值

描述
URL

作为提交按钮使用的图像的 URL。

可能的值:

  • 绝对 URL - 指向另一个站点(比如 src="www.example.com/submit.gif")
  • 相对 URL - 指向网站内的文件(比如 src="submit.gif")

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024