gpt4 book ai didi

javascript - 将任何 JavaScript 函数转换为页面事件

转载 作者:行者123 更新时间:2023-11-28 14:04:11 27 4
gpt4 key购买 nike

我需要能够实现以下目标(以一种或另一种方式):

function ShowContent() {}

document.onShowContent = function ()
{
// anything I want to happen....
}

我想做的是在页面上添加一种监听器广告代码,该代码将在调用特定函数时自动刷新广告位。我希望广告代码在检测到已调用“ShowContent()”时刷新,而不是让该函数“ShowContent()”直接刷新广告代码。

谢谢。

最佳答案

现代 JavaScript 库使这一切变得简单。当然,您可以“手动”完成,但这里有一个使用 jQuery 的简单示例

首先,监听者

$(document).bind( 'ShowContent', function()
{
// anything you want
});

然后触发

$(document).trigger( 'ShowContent' );

如果你愿意,你甚至可以走这条路

function ShowContent()
{
$(document).trigger( 'ShowContent' );
}

关于javascript - 将任何 JavaScript 函数转换为页面事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2791066/

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