Iframe thickbox2.0使用的方法_javascript技巧
程序员文章站
2022-05-12 17:11:57
...
thickbox.js中的
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;
});
}
将红色部分修改为:
self.parent.TB_show(t,this.href,g);
复制代码 代码如下:
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;
});
}
将红色部分修改为:
复制代码 代码如下:
self.parent.TB_show(t,this.href,g);
上一篇: 视频网站56网的SDK
下一篇: 最大K个数问题的Python版解法
推荐阅读
-
有关phpmailer的详细介绍及使用方法_php技巧
-
动态加载iframe时get请求传递中文参数乱码解决方法_javascript技巧
-
关于页面嵌入swf覆盖div层的问题的解决方法_javascript技巧
-
JavaScript 模拟类机制及私有变量的方法及思路_javascript技巧
-
JS截取字符串常用方法整理及使用示例_javascript技巧
-
用JavaScript隐藏控件的方法_javascript技巧
-
JS链式调用的实现方法_javascript技巧
-
js中设置元素class的三种方法小结_javascript技巧
-
javascript getElementByTagName的使用_javascript技巧
-
javascript中的void运算符语法及使用介绍_javascript技巧