取的iframe中元素的方法

关键代码如下:

document.getElementById("previewFrame").contentWindow.document.getElementById("uptown").innerHTML = "11111";


说明:关键是其中的contentWindow这个必须要加


jquery中获得iframe中指定元素的方法:
$(document.getElementById('previewFrame').contentWindow.document).find("#uptown").css("border-top-color","blue");

你可能感兴趣的:(java,jquery,css)