$("."+divClass+" .pop-box iframe", top.document)这个表示什么意思?
假设 divClass =“div1”
$("."+divClass+" .pop-box iframe", top.document) =$(".div1.pop-box iframe",top.document) = top.document.getElementById(".div1.pop-box iframe)
http://www.runoob.com/jquery/jquery-ref-selectors.html
在顶层窗口查找符合"."+divClass+" .pop-box iframe"这个选择器的dom对象
http://www.w3school.com.cn/jquery/prop_context.asp
顶层dom对象中某div下的 某个iframe