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

iframe访问

时间:2014-09-19 13:48:25      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   java   ar   sp   代码   on   c   


访问iframe
    JavaScript代码
        document.getElementById(‘koyoz‘).contentWindow.document.getElementById(‘test‘).style.color=‘red‘
        parent.document.getElementById(‘id‘)

    jquery
    $("#koyoz").contents().find("#test").css(‘color‘,‘red‘);

    1.在父窗口中操作 选中IFRAME中的所有单选钮
        $("#objid",document.frames(‘iframename‘).document)
        $(window.frames["iframe1"].document).find("input[@type=‘radio‘]").attr("checked","true");

    2.在IFRAME中操作 选中父窗口中的所有单选钮
         $(‘#objId‘, parent.document);
        $(window.parent.document).find("input[@type=‘radio‘]").attr("checked","true");

iframe访问

标签:style   color   io   java   ar   sp   代码   on   c   

原文地址:http://www.cnblogs.com/zodiacblog/p/3981254.html

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