Javascript 函数仅在事件发生时被调用!

发布于 2024-08-27 12:06:39 字数 228 浏览 11 评论 0原文

我有一个 javascript 函数,我希望在 init 和稍后的 onClick 事件上以编程方式调用它,但它不会以编程方式调用,但可以与 onClick 一起使用。

这个例子是:

function init() {
  a(); 
}

在初始化时调用 init() ,它应该调用 a() 但那没有发生!

I have a javascript function, I want it to be called programatically on init and later onClick event but its not getting called programatically but works ok with onClick.

The example would be:

function init() {
  a(); 
}

init() is called on initialization which should call a() but thats not happening!

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

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

发布评论

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

评论(1

凉城凉梦凉人心 2024-09-03 12:06:39

这是 100% 运行的示例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>sdasddss</title>


    <script type="text/javascript">
  function init(){
alert("I'm calling afunction()");
afunction();
}

function afunction(){
alert("I was called successfuly");
}

window.onload = init;
  </script>

</head>

<body>

My body

</body>
</html>

Here is the example working 100 %

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>sdasddss</title>


    <script type="text/javascript">
  function init(){
alert("I'm calling afunction()");
afunction();
}

function afunction(){
alert("I was called successfuly");
}

window.onload = init;
  </script>

</head>

<body>

My body

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