我正在使用HighSlide库在iFrame中显示外部HTML页面。加载外部HTML内容后,我想导航到iframe内的锚点/哈希链接。我正在使用onAfterExpand事件尝试单击我的链接,但未执行单击:
$('.show-hidden-comment').click(function()
{
var anchorId = $(this).attr('id');
hs.Expander.prototype.onAfterExpand = function (sender)
{
var body = sender.body;
var iFrame = $(body).find("iframe");
var anchorLink = iFrame.contents().find("#" + anchorId);
anchorLink.click();
};
return hs.htmlExpand(this, { objectType: 'iframe' });
});