jQuery remove element from all iframes
我有一个页面,其中包含 4 个 iframe。我想使用 jQuery(或纯 JavaScript)循环遍历所有这些 iframe(我不知道它们的 ID)和主框架并删除具有指定类名的元素。我将调用此函数从 Chrome 扩展程序中删除这些元素。
我该怎么做?感谢您的任何回答。
此解决方案的工作原理与 iFrame 相同。我创建了一个 PHP 脚本,可以从其他网站获取所有内容,最重要的是您可以轻松地将自定义 jQuery 应用于该外部内容。请参考以下脚本,该脚本可以从其他网站获取所有内容,然后您也可以应用您的自定义 jQuery/JS。此内容可以在任何地方、任何元素或任何页面内使用。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<?php /* Use below function to display final HTML inside this div */ //Display Frame <?php /* function displayFrame() //Get HTML from the URL //Add custom JS to returned HTML content /* Here I am writing a sample jQuery to hide the navigation menu "; //Append Custom JS with HTML //Return customized HTML |
使用这些函数,并将
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
var getIFrameDocument = function(iframe) { var doc; try { if ((typeof InstallTrigger !== ‘undefined’) && (iframe.contentDocument)) { // Firefox, Opera doc = iframe.contentDocument; } else if (iframe.contentWindow) { // Internet Explorer doc = iframe.contentWindow.document; } else if (iframe.document) { // Others? doc = iframe.document; } } catch(e) { } return doc; var findElementRecursively = function(selector, doc) { if (element.length !== 0) { try { try { /* Helps prevent errors like"Permission denied to access property ‘jquery’" */ var result = []; if (!(typeof(iframeDoc) === ‘undefined’)) { if (result.length > 0) { var element = findElementRecursively(‘.class-name’, document); |
使用 jQuery 你可以这样实现:
1
2 3 |
$("iframe").each(function() {
$(this).contents().find("element.classname").remove(); }); |
找到 iFrame 并使用
1
2 3 |
$(document).ready(function() {
$(iframe).contents().find(element).html(code); }); |
用您的值替换
可能的解决方案:
1
2 3 4 5 |
$(document).ready(function() {
$.each(‘iframe’, function(k, v) { $(this).contents().find(‘div’).html(‘Hello, world!’); }); }); |
此外,这个问题已经在此处和此处得到解答。
类似这样的:
1
2 3 4 5 6 7 8 9 |
var i, len, target_class = ‘class_name’, $iframes = $( ‘iframe’, top.document ); // <– add top.document for ( i = 0, len = $iframes.length; i < len; ++i ) { |
或使用香草js:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
var i, len, target_class = ‘class_name’, iframes = top.document.getElementsByTagName( ‘iframe’ ), // <– add top.document removeByClass = function ( doc, class_name ) { for ( i = 0, len = toRemoves.length; i < len; ++i ) { for ( i = 0, len = iframes.length; i < len; ++i ) { removeByClass( top.document, target_class ); // <– add top.document |
编辑
添加了从 iframe 内部调用的可能性,但它们必须来自同一个域!!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268770.html