Home >Web Front-end >JS Tutorial >Methods used by Iframe thickbox2.0_javascript skills

Methods used by Iframe thickbox2.0_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:55:311040browse

Copy code in thickbox.js The code is as follows:

function TB_init(){
$("a.thickbox").click(function(){
var t = this.title || this.name || null;
var g = this.rel || false;
TB_show(t,this.href,g);
this.blur();
return false;
});
}

Change the red part to :
Copy code The code is as follows:

self.parent.TB_show(t,this.href ,g);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn