1

<a title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg">

现在,我正在单击一张图片,该图片允许我打开带有上述行的大图像(模态窗口),并且标题为 xyz,但是我还想要一个链接(例如,google)?

谢谢!

已编辑-我认为我的问题被错误地解释了,或者我没有正确询问。现在,当我单击一张小图片时,我会看到一个模态窗口,其中包含同一张图片的较大版本,并且标题(xyz)在最重要的是。我想知道如何在同一行代码中添加指向某个网站的链接。我很困惑,因为上面已经使用了 href!

谢谢!

4

3 回答 3

2

添加target="_blank"

<a title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg" target="_blank">

于 2013-11-03T12:54:06.810 回答
1

添加属性target并将其设置为:_blank像这里:

<a target="_blank" title="xyz" rel="simplemodal[examples]" href="images/x_big.jpg">
于 2013-11-03T12:55:11.080 回答
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
于 2013-11-03T12:59:24.567 回答