繁体   English   中英

当我单击图像中的超链接点而不在另一个页面上打开它时,如何使此音频剪辑在同一页面上打开?

[英]How do I make this audio clip open on the same page when I click on the hyperlink point in the image without opening it on another page?

<img src="Resources/image/19.jpg" usemap="#image-map">
<map name="image-map">
    <area target="_blank" alt="listen the audio clip" title="listen the audio clip" href="Resources/audio/03 unit 3/40_Track.mp3" coords="944,567,884,585" shape="rect">
    <area target="_blank" alt="listen the audio clip" title="listen the audio clip" href="Resources/audio/03 unit 3/41_Track.mp3" coords="941,602,890,627" shape="rect">
</map>

将 _blank 更改为 _self

target 属性指定打开链接文档的位置。

_blank 在新的 window 或选项卡中打开链接的文档 _self 在单击的同一框架中打开链接的文档(这是默认设置)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM