Home  >  Q&A  >  body text

jquery怎么用两个事件启动一个函数?

像这样。加载完成和点击都可以触发同一个函数

$(function(){
$("button").click(function(){
alert("ok");
});
});

当然这个是不能实现。求大神改改

phpcn_u238phpcn_u2382806 days ago904

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:42:06

    How does jquery start a function with two events? -PHP Chinese website Q&A-How does jquery start a function with two events? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 阿神

    阿神2017-03-06 14:21:44

    不用匿名函数就可以的:             

    function finish(){
        alert("ok");
    }
    $(function(){
        $("button").click(finish);
        finish();
    });

    reply
    0
  • Cancelreply