1.JAVA将上传的PDF 解析成图片并保存起来,并且可以"下载PDF"。
http://blog.csdn.net/yang3wei/article/details/7681209
2.JS中showModalDialog 详细使用
http://www.cnblogs.com/Dlonghow/archive/2009/06/04/1496141.html
说明:①在弹出showModalDialog页面使用jQuery进行异步调用($.ajax)时,需要在路径前面加${pageContext.request.contextPath},如下完整路径:
${pageContext.request.contextPath}/json/getProductDetail.action
3.oracle当前日期的前3个月怎么写?sysdate减3个月怎么写?
Oracle获取2个日期间隔天数?
select add_months(sysdate,-3) from dual
4.在进行Web页面开发的时候,有些样式在IE高版本与低版本间样式展现不一样。
IE8及低版本IE兼容性设置
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
5.checkbox设置复选框默认选中
情景:①在动态的生成的checkbox中,不能让复选框选中。解决:
$("#customer-product-list").find("input[name='yes-check-flag']").attr("checked", true);
②某个checkbox为必选项,不能取消
<input type="checkbox" name="chkAllowed" onclick="return false;" checked="checked" />
http://www.jb51.net/article/40491.htm
6.DES加密和解密
7.开源日历控件的使用方法 ,WdatePicker控件设置可选日期为3天后开始
设置日历可以选择的最小时间:WdatePicker({minDate:'%y-%M-{%d+3}'});
详细参考:http://blog.itpub.net/23109131/viewspace-668785/
8.传值
//格式化字符串
function formatString(){
var string = [];
for(var i = 1; i < arguments.length; i++){
string.push(arguments[i]);
}
return arguments[0].replace(/\{(\d+)\}/g, function(m, i){return string[i];});
}
9.密码与确认密码js校验
$('#password').blur(function (){ //失去焦点时触发的时间
var $password = $("#password").val(); //将id为note的标签对象化
var regu = /\w*[0-9]+\w*$/;
var regu2 = /\w*[a-zA-Z]+\w*$/;
if (!regu.test($password ) || !regu2.test($password)) {
$("#note4").html("密码格式不合法!");
}else{
$("#note4").html("密码合法!");
}
});
$('#password1').blur(function (){ //失去焦点时触发的时间
if ($(this).val()==$("#password").val()) {
$("#note5").html("");
}else{
$("#note5").html("两次输入密码不相同");
}
});
10.邮箱校验
function blurContractMail(oid, erroText) {
var s = document.getElementById(oid).value;
if (s.length != 0) {
var regEmail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;//邮箱
if (!regEmail.test(s)) {
document.getElementById(erroText).innerHTML = "<font color='#ED1C24'>邮箱地址格式不对</font> ";
return;
}
}
document.getElementById(erroText).innerHTML =text;
}
10.
Itext 动态生成PDF 在页面底部加下滑线
Oracle将日期格式化 2015年7月2日
js 浮点数加减