Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表格,其中数据正在传递以存储在数据库中。Db 操作后我需要显示一个花哨的 J 查询 Alert 是否 Db 操作成功失败。我怎样才能做到这一点?
为数据库操作制作 2 个标志(比如 0 和 1)。1 表示成功 1 表示不成功。当数据库操作成功完成时,传递 1 来调用或初始化 Jquery 警报成功,同样失败。
喜欢
if(DB==1){ jAlert("SUCCESS"); } if(DB==0){ jAlert("UNSUCCESS"); }