JSP 操作笔记
参数判空
<c:if test="${!empty safetyStockListSize }"></c:if>
window.onload=function(){//初始化执行
var spanOne = document.getElementById("spanOne");
var spanTwo = document.getElementById("spanTwo");
console.log(".........");
ajaxFormUtil("psi/safetyStock/judgment", null,
function(result) {
if (result.success) {
// 不隐藏 隐藏
} else {
// 隐藏 添加
spanOne.setAttribute("class","hidden");
spanTwo.setAttribute("class","hidden");
}
});
}
浮点数 DOUBLE 比较
temStockTwo.getQty().compareTo(temSS.getSafetyQty())
layer.msg:
layer.msg('库存中有 '
+ result.message
+ ' 条记录达到危险库存!'
+ '<br> '
+ '请及时处理!',
{
icon : 0,
offset : 'rb',//右下角固定显示
time : 0, //2秒关闭(如果不配置,默认是3秒) 默认为0 永久性打开
btn : ['查看'],
yes : function(){
window.location.href = 'http://192.168.10.31:8080/report/ReportServer?reportlet=emis%2Fpsi%2Fpsi_safety_stock.cpt&__bypagesize__=false';
}
},
function() {//结束时执行
console.log("这个layer.msg是为了实时监测安全库存预警,并提供提示的地方");
});
类似的不遮罩jsp界面的还有
window.onload = function() {//初始化执行
ajaxFormUtil(
"psi/safetyStock/getLowerSafetyStockNum",
null,
function(result) {
console.log('库存中有 ' + result.message
+ ' 条记录达到危险库存!请及时处理!');
if (result.success) {
layer.open({
type : 1,
offset : 'rb', //具体配置参考:offset参数项
content : '库存中有' + result.message + ' 条记录达到危险库存!请及时处理!',
btn : '查看',
btnAlign : 'c', //按钮居中
shade : 0 ,//不显示遮罩
yes : function() {
window.location.href = 'http://192.168.10.31:8080/report/ReportServer?reportlet=emis%2Fpsi%2Fpsi_safety_stock.cpt&__bypagesize__=false';
}
});
} else {
;
}
});
};
eg1:
layer.open({ type: 1 ,offset: 't' //具体配置参考:offset参数项 ,content: '<div style="padding: 20px 80px;">内容</div>' ,btn: ['关闭全部','xx'] ,btnAlign: 'c' //按钮居中 ,shade: 0 //不显示遮罩 ,yes: function(){//第一个按钮 layer.closeAll(); }, btn2:function(){layer.msg('hello'); //第二个按钮 } });
eg2:
layer.msg('库存中有 ', { icon : 0, offset : 'rb',//右下角固定显示 time : 0, //2秒关闭(如果不配置,默认是3秒) 默认为0 永久性打开 btn : ['查看','CCC'], yes : function(){//查看按钮 第一个按钮 layer.msg('HHH') }, btn2:function(){ layer.msg('666')//第二个按钮 } }, function() {//结束时执行 });
血肉苦弱机械飞升 :痛苦预示着超脱
本文来自博客园,作者:血肉苦弱机械飞升,转载请注明原文链接:https://www.cnblogs.com/supperlhg/p/8258194.html