单击时仅加载一次 url
我希望能够在单击按钮后仅加载一次网址。我有这个:
$("#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
.click()
替换为.one('click', function() {
但是,这会使按钮之后不再具有任何功能,因此您可能需要删除或 步骤操作:
如果您只想在加载
时“暂时”禁用该按钮,请按以下
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:您可以使用此处找到的 jQuery
.one()
方法。例如:希望这有帮助。
You can use the jQuery
.one()
method found here. For example:Hope this helps.
取消绑定事件,如
http://jsfiddle.net/EVhJV/
unbind the event like
http://jsfiddle.net/EVhJV/