使用文本框更改 Iframe 中的 URL

发布于 2024-10-17 23:13:46 字数 231 浏览 3 评论 0原文

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

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

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

昆汀

I have a website http://speedie.mobi/emulator4/ and I would like to add a text box where people could add their own url to change what appears in the mobile phone.

It is just using a simple iframe browser.

So by adding their url in the text box it would replace the current url with their url.

Quentin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

灯角 2024-10-24 23:13:46
<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>

--> 示例 <--

<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 <--

我不是你的备胎 2024-10-24 23:13:46

使用 jQuery,

var url = $('#urltext').value();
$('#targetframe').attr('src',url);>

Using jQuery,

var url = $('#urltext').value();
$('#targetframe').attr('src',url);>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文