我正在通过 javascript 在转发器中填充锚链接,我正在使用 colorbox iframe 弹出这些链接。它在 IE7、Safari、Chrome 中运行良好,但在 Forefox(14.1) 中运行良好。
在 Firefox 中,它在新窗口中打开,而不是在 colorbox iframe 中打开。
function BidCountFormatter(BidCount, AuctionID) {
if (parseInt(BidCount) > 0)
return "<b><a class=auctionhistorybox href=popupauctionhistory.aspx?auctionid=" + AuctionID + ">" + BidCount + "</a></b>";
else
return "--";
}
$(document).ready(function () {
$(".auctionhistorybox").colorbox({ iframe: true, width: "35%", height: "60%" });
});