0

当我将以下脚本上传到我的网页时,它不起作用。如果我在 w3school.com 的“TryIt Editor”上尝试它,它可以正常工作并加载 url。我在这个例子中更改了域名。

<!DOCTYPE html>
<html>
<body>

    <script type='text/javascript'>
        var x=1;
        function changeLink()
        {
           x=x+1;
           var y="http://example.com/basicone/image"+x+".html";
           document.getElementById('iframe-a').src=y;
        }
    </script>

    <iframe id="iframe-a" seamless src="http://example.com/basicone/image1.html" height="450" width="1000" scrolling="no"></iframe>
    <button id="button" onclick="changeLink()">Next</button>
</body>
</html>
4

1 回答 1

0

你确定它不起作用?真的很奇怪,尤其是因为js是客户端

尝试更改警报网址,在更改后,使用以下代码:

<script>
var x=1;
function changeLink()
{

x=x+1;
var y="http://example.com/basicone/image"+x+".html";

document.getElementById('iframe-a').src=y;
alert(document.getElementById('iframe-a').src);
}
</script>

<iframe id="iframe-a" seamless src="http://example.com/basicone/image1.html" height="450" width="1000" scrolling="no"></iframe>
<button id="button" onclick="changeLink()">Next</button>
于 2013-06-23T21:39:19.193 回答