link[href]
这段代码很好用,它只适用于
$("iframe").load(function() {
$("iframe").contents().find("script[src], img[src], link[href], a[href]").each(function(i) {
this.href = this.href.replace(/^http:\/\/www\.mydomain\.com/, "http://www.theotherdomain.com");
});
});