我試圖從iframe中刪除幾個div選項卡,使用iframe中設置的onload函數來簡化在一個位置中的所有內容。不能強調不夠,因爲大多數人似乎忽略了這樣的事實,我想使用的onload在這個< IFRAME>嘗試刪除/刪除內部框架中的div使用onload
<iframe scrolling=no frameborder=0 src='insertwebsitehere' width=100% onload="this.height=this.contentWindow.document.body.scrollHeight;" > #document </iframe>
在div標籤我想刪除沒有特定的ID,但類代替
class="d2l-page-actions-container d2l-right"
class="d2l-action-buttons"
我想到了在onload功能附加這樣的事情;
<iframe onload="this.height=this.contentWindow.document.body.scrollHeight;this.contentWindow.document.html.body.removeClass('insertclasshere');">
但它不工作,建議?
任何幫助表示讚賞,謝謝提前
請參閱https://stackoverflow.com/a/14066534/3088508 –
能夠詳細說明我在尋找什麼,這將適用於我的情況? – Toreono
[按類名刪除元素?](https://stackoverflow.com/questions/4777077/removing-elements-by-class-name) – sniperd