oracle数据库的编码
--oracle数据库的编码
select * from nls_database_parameters where parameter ='NLS_CHARACTERSET';
--oracle客户端编码
select * from nls_instance_parameters where parameter='NLS_LANGUAGE';
--oracle数据库的编码
select * from nls_database_parameters where parameter ='NLS_CHARACTERSET';
--oracle客户端编码
select * from nls_instance_parameters where parameter='NLS_LANGUAGE';
js验证是否是数字,支持正负数小数。functionisShuzi(str){//var regExp =/[0-9]$/;//不支持小数 var regExp =/^\-?[0-9]+(.[0-9]+)?$/;if(!regExp.test(str.val())){
str.val("0");
}
}
jquery一次绑定多个元素事件
$(".peoplenum,input[name$='otherAmount'],#aa,#bb").bind("change", function(){
});
$("#deposit,#carAmount").bind("change",function(){
});
el 表达式遍历Map
<c:forEach var="item" items="${payMentMap}">
<option value="${item.key}">${item.value}</option>
</c:forEach>
查找oracle自己用户的表
select table_name from user_tables;