我需要为此设置按钮onclick事件。
<script type="text/javascript">
$(function () {
setTimeout(function() {
$.bootstrapGrowl("This Product Information Already Exist", {
type: "success",
align: "right"
});
}, 1000);
});
</script>
现在这是一个功能,我需要在运行此功能时按下按钮。 PLZ。帮助...
答案 0 :(得分:0)
你的意思是按钮点击事件这个功能应该执行??
<script>
$("#btn").click(fucntion(){
setTimeout(function() {
$.bootstrapGrowl("This Product Information Already Exist", {
type: "success",
align: "right"
});
}, 1000);
});
</script>