append element in head of an iframe using jquery

后端 未结 4 1745
刺人心
刺人心 2021-01-17 23:21

i want to append a style sheet(css) link to the head of an iframe using jquery . i tried with the following code but not working.

$(\'#tabsFrame\').contents(         


        
4条回答
  •  悲&欢浪女
    2021-01-18 00:09

    well, you can check with this:

    $('#tabsFrame').contents().find("head")[0].appendChild(cssLink);
    

提交回复
热议问题