我試圖訪問IFRAME這是在表裏面。 有人可以請建議如何訪問使用jQuery的?
<table class="cke_editor">
<tr>
<td id="cke_contents_short_description">
<iframe>
<html>
<body id="cke_pastebin" style="color:red">
</body>
</html>
</iframe>
</td>
</tr>
</table>
我的問題是我想刪除從jQuery的cke_pastebin風格,是表> IFRAME> TD內。
其實我已經做了簡單的身體標記。如下所示,它工作正常。
$(document).ready(function() {
var isId = (document.body.id === 'cke_pastebin');
if (isId) {
$("#cke_pastebin").removeAttr("style");
}
});
有人可以建議我該怎麼做?
['.children()'](https://api.jquery.com/children/)可能會幫助你。 – Henders
嗨亨德斯,感謝您的回覆,但沒有不是。我已經嘗試過,但沒有工作 – Punam
您在整個html頁面中有單個iframe或多個? –