点击图标,转向一个网页的html代码。谁有范例给下吗
发布网友
发布时间:2022-06-09 12:25
我来回答
共4个回答
热心网友
时间:2023-09-29 08:34
<html>
<head>
<title>点击不标转向另一个页面</title>
</head>
<body>
<div>
<a href="..." title="...">
<img src="..." alt="..." style="border: none;" />
</a>
</div>
</body>
</html>
省略号的部分我想你应该知道是该怎么填写吧
第一个是转向的页面URL
第二个是对这个链接的描述
第三个是图像的URl
第四个是图像的描述和不想无法显示时的替代文本
热心网友
时间:2023-09-29 08:34
<img src="https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-.gif" onclick="window.location='http://www.baidu.com'" />
或者
<img src="https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-.gif" onclick="window.open('http://zhidao.baidu.com')" />
或者
<a href="http://zhidao.baidu.com" target="_blank"><img src="https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-.gif" /></a>
热心网友
时间:2023-09-29 08:35
<a href="http://下一个网页地址" target="_blank"><img src="http://多点击的图片地址" /></a>
热心网友
时间:2023-09-29 08:36
<a href="*.html" target=_black><img src='***.jpg'></a>