我試圖改變iframe中內容的CSS。 即我需要隱藏<img>
元素。 但我cannnot改變.. 下面是示例代碼:如何控制動態加載到iframe中的內容的CSS?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<iframe src="http://www.carsales.com.au/pls/carsales/!dealer_content.welcome?dealer_id=10978" width="80%" height="600" id='frameDemo'></iframe>
<script>
$("#frameDemo").contents().find("img").css("display", "none");
</script>
</body>
</html>
請幫我
親切的問候 蔦集納
[同源政策](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Same_origin_policy_for_JavaScript) – Antony
是的。這是一個CORS問題,但請用'.hide()替換'.css('display','none')' – jedmao