摘要:
经常使用MySQL存储过程的游标进行数据操作,有些时候游标内的操作成功一半,失败一半,导致修复数据浪费更多时间,索性加入事务操作,插入失败那就都失败,成功就都成功 游标定义需要注意的是,定义游标必须放到赋值的前面,不然存储过程保存报错 CREATE DEFINER=`root`@`%` PROCED 阅读全文
摘要:
最近要开发一个生成pdf版本合同的功能,在网上找了很多资料,没有得到想要的生成pdf页码的效果,最终参考一篇文章实现了想要的页码功能: https://www.iteye.com/blog/honda418-513746 以下为生成pdf全部功能的代码,末尾附效果图 效果图如下: 原创https:/ 阅读全文
摘要:
看到过好多onclick='location.href("index.aspx")'这种方式,试了一次并不行,应该改为下面的方式 <input type="button" onclick='location.href=("index.aspx")' />//在本页面打开 <input type="b 阅读全文
摘要:
<input type="text" name="name" value="" onkeyup="value=value.replace(/[^\d]/g,'')" /> 阅读全文
摘要:
$("#showPassword").attr("checked") 提示提示undefied 需要改为 $("#showPassword").prop("checked") 或者改为 $("#showPassword").is(":checked") 阅读全文
摘要:
Create table B([id] int,[name] nvarchar(1))Insert Bselect 1,N'a' union allselect 1,N'b' union allselect 2,N'c' union allselect 2,N'd' union allselect 阅读全文
摘要:
直接jquery代码: var checked=$("input[name='checked']:checked");//获取复选框被选中状态 if(!(checked&&checked.length>0)){//判断复选框是否被选中 alert("请选择一项"); return false; } 阅读全文
摘要:
//将页面input变成文本 JavaScript var input=$('table :input[type="text"]'); for(var i=0;i<input.length;i++){ input[i].parentNode.innerHTML = input[i].value; } 阅读全文
摘要:
var input =$('table :input[type="text"]'); for(var i=0;i<input.length;i++){ if(input[i].value==''){ alert("有未填写的文本框,请填写完整!"); return false; } } 阅读全文
摘要:
function click(){ var ck=true; $.each(data,function(i,obj){ var num=data[i].num; var sum=data[i].sum; if(num>sum){ ck=false; return false; } }) if(!ck 阅读全文