如何在按下按钮后激活脚本? [JQuery]

发布于 2024-09-17 23:18:26 字数 313 浏览 3 评论 0原文

按下按钮时我需要激活 cpa 线索。

code:

<script type="text/javascript" src="http://www.cpalead.com/mygateway.php?pub=52514&amp;gateid=NjE1Njk%3D"></script>.

按钮只是

所以我需要在单击按钮后激活

I need to activate cpa lead when the button is press.

code:

<script type="text/javascript" src="http://www.cpalead.com/mygateway.php?pub=52514&gateid=NjE1Njk%3D"></script>.

And the button is just <input type="button" />

So I need to activate the <script> after the button is clicked. Help please?

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

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

发布评论

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

评论(1

堇年纸鸢 2024-09-24 23:18:26

您将拥有此按钮:

<input type="button" id="activator" />

然后您的 JS 代码

  var loaded = false;
  $("#activator").click(function(){
     if (!loaded) {
        $.getScript("http://www.cpalead.com/mygateway.php?pub=52514&gateid=NjE1Njk%3D",  function(){ loaded = true; });
     } else {
        alert("script already loaded");
     }
     return false;
  });

未经过测试,但如 JQuery 文档中所述,它应该可以工作...

参考:

You will have this button as:

<input type="button" id="activator" />

and then your JS Code

  var loaded = false;
  $("#activator").click(function(){
     if (!loaded) {
        $.getScript("http://www.cpalead.com/mygateway.php?pub=52514&gateid=NjE1Njk%3D",  function(){ loaded = true; });
     } else {
        alert("script already loaded");
     }
     return false;
  });

Not tested, but as documented in the JQuery documentation, it should work...

References:

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