0

我正在创建一个应用程序,我在其中使用图像转换幻灯片。在图像幻灯片中,我使用超链接转到另一页。但页面在新窗口中打开。我想在同一个窗口中打开页面。

flashyslideshow.prototype.getSlideHTML=function (index) {
    var slideHTML= (this.imagearray[index][1])?'<a href=  "' + this.imagearray[index][1]+'" target = "'+this.imagearray[index][2]+ "_self" '">\n' : ''; //hyperlink slide?
    slideHTML+='<img src="'+this.imagearray[index][0]+'" height="550" width="100%" >';
    slideHTML+=(this.imagearray[index][1])? '</a><br />' : '<br />';
    slideHTML+=(this.imagearray[index][3])? '<font face="bookman old style" color="blue" size="3">' + this.imagearray[index][3] : ''; //text description?
    return slideHTML; //return HTML for the slide at the specified index
}
4

3 回答 3

0

在您的<a>标签内,添加

target="_self"

这会强制链接在同一窗口中打开。

于 2012-07-05T14:12:00.717 回答
0
<a href="www.google.com" target="_self">Google</a>
于 2012-07-05T14:19:47.810 回答
0

您可以通过确保目标为空来实现这一点,就像这样

<form id="form" method="post" action="index.html">
于 2014-04-29T07:59:50.860 回答