单击时仅加载一次 url

发布于 2024-12-01 12:10:54 字数 262 浏览 1 评论 0原文

我希望能够在单击按钮后仅加载一次网址。我有这个:

$("#button").click(function () { 
      $("#frame").attr("src", "http://www.google.com/");
});

不幸的是,每次我单击按钮时都会加载 iframe。这是完整的代码: JS Bin

I want to be able to load an url only once after clicking a button. I have this:

$("#button").click(function () { 
      $("#frame").attr("src", "http://www.google.com/");
});

Unfortunately this loads the iframe every sigle time I click the button. This is the complete code: JS Bin

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

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

发布评论

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

评论(3

鸠魁 2024-12-08 12:10:54

.click() 替换为 .one('click', function() {

但是,这会使按钮之后不再具有任何功能,因此您可能需要删除或 步骤操作:

如果您只想在加载 时“暂时”禁用该按钮,请按以下

var myClickHandler = function myClickHandler() {
    $(this).unbind( myClickHandler );

    $('#frame').attr('src', 'http://www.google.com').load(function() {
        $('#button').click( myClickHandler );
    });
};

$('#button').click( myClickHandler );

replace .click() with .one('click', function() {

However, that would leave the button without any functionality afterwards, so you might want to remove or disabled it aswell in the event handler.

In case you only want to "temporarily" disable the button while the <iframe> is loading, do it like this:

var myClickHandler = function myClickHandler() {
    $(this).unbind( myClickHandler );

    $('#frame').attr('src', 'http://www.google.com').load(function() {
        $('#button').click( myClickHandler );
    });
};

$('#button').click( myClickHandler );
沩ん囻菔务 2024-12-08 12:10:54

您可以使用此处找到的 jQuery .one() 方法。例如:

$("#button").one('click', function () { 
    $("#frame").attr("src", "http://www.google.com/");
});

希望这有帮助。

You can use the jQuery .one() method found here. For example:

$("#button").one('click', function () { 
    $("#frame").attr("src", "http://www.google.com/");
});

Hope this helps.

飘逸的'云 2024-12-08 12:10:54

取消绑定事件,如

$("#button").click(function (e) { 
      alert("good bye my friend");
    $(this).unbind(e.eventType);
});

http://jsfiddle.net/EVhJV/

unbind the event like

$("#button").click(function (e) { 
      alert("good bye my friend");
    $(this).unbind(e.eventType);
});

http://jsfiddle.net/EVhJV/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文