码迷,mamicode.com
首页 > 其他好文 > 详细

在父页面和其iframe之间函数回调 父页面回调iframe里写的函数

时间:2014-06-20 19:31:50      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:class   get   set   cti   name   for   

 

// @shaoyang  父页面
window[‘mengBanLogin‘]={
mengBanArr : new Array(),
mengBanLoginSuccess : function(){
console.log(‘mengbanzhixing‘);
if(mengBanLogin.mengBanArr.length > 0){
for(var i = mengBanLogin.mengBanArr.length-1; i >= 0; i--){
mengBanLogin.mengBanArr[i]();
}

}
}
}
jQuery("#mengban").click(function(){
//if(!QQ.Cookie.get("skey")){
if(QQ.Cookie.get("uin")==null){
userLogin();
window[‘login‘].cbArr.push(mengBanLoginSuccess);
}else{
mengBanLoginSuccess();
}
function mengBanLoginSuccess(){
window[‘mengBanLogin‘].mengBanLoginSuccess();
jQuery(this).hide();
jQuery("#videobox").show();
addCName(0);
video.setVid(firstVid);
jQuery("#shipinTitle li").eq(vnum-1).addClass("on").siblings().removeClass("on");
}
});

 

//iframe里的

//以下实现的功能是 视频播放器上有蒙板的页面
if(typeof(parent[‘mengBanLogin‘])!=‘undefined‘){
parent[‘mengBanLogin‘].mengBanArr.push(mengBanLoginSuccess);
}
function mengBanLoginSuccess(){
player.play();
console.log(‘loghha‘);
}

在父页面和其iframe之间函数回调 父页面回调iframe里写的函数,布布扣,bubuko.com

在父页面和其iframe之间函数回调 父页面回调iframe里写的函数

标签:class   get   set   cti   name   for   

原文地址:http://www.cnblogs.com/mabelstyle/p/3796260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!