php easyui 当数据错误时怎么提示用户
发布网友
发布时间:2022-04-07 08:10
我来回答
共1个回答
热心网友
时间:2022-04-07 09:39
自己在js文件中写个方法就行,
function show_error_message(title, content)
{
$.messager.show({
title:title,
msg:'<font color="red">' + content + '</font>',
timeout:3000,
showType:'slide'
});
}