<a title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg">
现在,我正在点击一张图片,这张照片允许我用上面的一行打开一张大图片(模态窗口),标题为xyz,但我还想要一个链接(例如谷歌)? / p>
谢谢!
Edited- 我认为我的问题被错误地解释了或者我没有正确地问过.. 现在,当我点击一张小图片时,我会得到一个模态窗口,其中包含相同图片的较大版本,并且标题(xyz)位于其上方。 我想知道如何在同一行代码中添加指向某个网站的链接。我很困惑,因为上面已经使用过href!
谢谢!
答案 0 :(得分:2)
添加target="_blank"
<a title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg" target="_blank">
答案 1 :(得分:1)
添加属性target
并将其设置为:_blank
,如下所示:
<a target="_blank" title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg">
答案 2 :(得分:0)
您可以使用target =“_ blank”属性,
<a href="link" target="_blank">Link Text</a>
target属性指定打开链接文档的位置。
<a target="_blank|_self|_parent|_top|framename">
有关目标属性的更多信息,
_blank Opens the linked document in a new window or tab
_self Opens the linked document in the same frame as it was clicked (this is default)
_parent Opens the linked document in the parent frame
_top Opens the linked document in the full body of the window
framename Opens the linked document in a named frame