4

そのため、ページからスクリプトを削除するこの関数がありますが、何行もの長さのスクリプトがまだ表示されています。ロードするページからすべてのスクリプトを削除する方法はありますか?

 function filterData(data){

// filter all the nasties out
// no body tags
data = data.replace(/<?\/body[^>]*>/g,'');
// no linebreaks
data = data.replace(/[\r|\n]+/g,'');
// no comments
data = data.replace(/<--[\S\s]*?-->/g,'');
// no noscript blocks
data = data.replace(/<noscript[^>]*>[\S\s]*?<\/noscript>/g,'');
// no script blocks
data = data.replace(/<script[^>]*>[\S\s]*?<\/script>/g,'');
// no self closing scripts
data = data.replace(/<script.*\/>/,'');

// [... add as needed ...]
return data;
  }

これは、htmlで提供されるスクリプトの例です。

<script type="text/javascript">
var ccKeywords="keyword=";
if (typeof(ccauds) != 'undefined')
{
 for (var cci = 0; cci < ccauds.Profile.Audiences.Audience.length; cci++)
{
  if (cci > 0) ccKeywords += "&keyword="; ccKeywords +=     ccauds.Profile.Audiences.Audience[cci].abbr;
}
}
</script>
4

3 に答える 3

2

正しければ<script>、HTML文字列の一部から内部コードを含むすべてのタグを削除する必要があります。この場合、次の正規表現を試すことができます。

data.replace(/<script.*?>[\s\S]*?<\/script>/ig, "");

ワンライナーとマルチライナーで正常に動作するはずであり、他のタグには影響しません。

デモ:http: //jsfiddle.net/9jBSD/

于 2012-06-12T16:15:57.203 に答える
0

checkoutsugar.js- http: //sugarjs.com/

それはあなたが望むことをするべきであるremoveTagsメソッドを持っています

http://sugarjs.com/api/String/removeTags

于 2012-06-12T15:57:36.570 に答える
0
function filterData(data){
    var root = document.createElement("body");
    root.innerHTML = data;

    $(root).find("script,noscript").remove();

    function removeAttrs( node ) {
        $.each( node.attributes, function( index, attr ) {
            if( attr.name.toLowerCase().indexOf("on") === 0 ) {
                node.removeAttribute(attr.name);
            }
        });
    }

    function walk( root ) {
        removeAttrs(root);
        $( root.childNodes ).each( function() {
            if( this.nodeType === 3 ) {
                if( !$.trim( this.nodeValue ).length ) {
                    $(this).remove();
                }
            }
            else if( this.nodeType === 8 ) {
                $(this).remove();
            }
            else if( this.nodeType === 1 ) {
                walk(this);
            }
        });
    }

    walk(root);

    return root.innerHTML; 
}

filterData("<script>alert('hello');</script></noscript></script><div onclick='alert'>hello</div>\n\n<!-- comment -->");
//"<div>hello</div>"
于 2012-06-12T16:37:17.537 に答える