表单提交时显示错误警报

时间:2015-12-02 12:58:58

标签: php jquery html forms

我想在提交表单时如果用户名或密码不正确,那么它应该显示我警告框。对于警报消息,我使用了alertify插件,但它显示的是传统警报框。我的代码是这样的:

<script type='text/javascript'>
    alert({
        msg: 'Are you sure you want to delete this user',
    });
</script>

但我想要以下输出:

alertmessage

为此,我使用了这个:

<script type='text/javascript'>
    alertify.alert({
        msg: 'Are you sure you want to delete this user',
    });
</script>

显示不正确。请帮忙。

1 个答案:

答案 0 :(得分:0)

查看您正在使用的库的the documentation

alertify.alert(message);

您应该传递包含邮件的字符串,而不是包含包含该字符串的msg属性的对象。

alertify.alert('Are you sure you want to delete this user');