0

Fiddle

iframe の 1 つだけが同時に機能するのはなぜですか? 私のjavascriptに何か問題がありますか?

function test(){
    document.getElementById('src1').src='http://cnn.com/'
}
function test1(){
    document.getElementById('src2').src='http://stackoverflow.com/'
}


test();
test1();
4

2 に答える 2

1

iframeそれは機能しますが、セキュリティ上の理由からURLを埋め込むことを妨げているのはstackoverflowです...

お気づきかもしれませんが、Google でさえ、ユーザーが Google URL を埋め込み、iframe

function test1(){ //Alter the URL in this function
    document.getElementById('src2').src='https://stackoverflow.com/'
}

デモ

iframe の盗用を防ぐ

于 2013-07-08T07:24:53.737 に答える