gpt4 book ai didi

javascript - 使用文本框更改 Iframe 中的 URL

转载 作者:行者123 更新时间:2023-11-28 16:33:23 25 4
gpt4 key购买 nike

我有一个网站http://speedie.mobi/emulator4/我想添加一个文本框,人们可以在其中添加自己的网址来更改手机中显示的内容。

它只是使用一个简单的 iframe 浏览器。

因此,通过在文本框中添加他们的 url,它将用他们的 url 替换当前 url。

昆汀

最佳答案

<script>
function goTo() {
var input = get("box").value,
frame = get("frame");

if(input.match(/\bhttp(.)*/)) {
frame.src = input;
} else {
input = "http://" + input;
frame.src = input;
}
}

function get(id) {
return document.getElementById(id);
}
</script>


<input type="text" id="box" value="http://www.example.com" />
<button onClick="goTo();">go</button>

<iframe src="http://www.example.com" frameborder="0" id="frame" width="100%" height="90%"></iframe>

--> example <--

关于javascript - 使用文本框更改 Iframe 中的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4999995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com