javascript函数设置Onclick事件

时间:2016-05-06 05:42:04

标签: javascript html

我需要为此设置按钮onclick事件。

<script type="text/javascript">
$(function () {
    setTimeout(function() {
        $.bootstrapGrowl("This Product Information Already Exist", { 
            type: "success",
            align: "right"
        });
    }, 1000);
});
</script>

现在这是一个功能,我需要在运行此功能时按下按钮。 PLZ。帮助...

1 个答案:

答案 0 :(得分:0)

你的意思是按钮点击事件这个功能应该执行??

<script>
$("#btn").click(fucntion(){
setTimeout(function() {
        $.bootstrapGrowl("This Product Information Already Exist", { 
            type: "success",
            align: "right"
        });
    }, 1000);
});
</script>