我的代码有问题。单击提交按钮时,我想更改 iframe url,但它不起作用。我发现了一些关于这个的问题,我发现了 GoToGoogle 功能,它必须转发给谷歌。这就是我的所有页面代码。
<script>
function sendMeToGoogle(){
document.getElementId('changeme').src="http://google.com/";
}
</script>
this is test
<iframe src="test" ID="changeme" ></iframe>
<input type="submit" onclick="sendMeToGoogle();" />
有人能帮我吗?