jquery一个简单的事件分析
程序员文章站
2022-08-21 17:59:29
1.表格的总计计数
var j = 0;
$(".carryunquantity").each(function(){
var count ;
co...
1.表格的总计计数
var j = 0; $(".carryunquantity").each(function(){ var count ; count=number($(this).text()); j+= count;}); $("#uncarrycount").text(j);
2.打印代码,在需要打印的头尾加上对应注释即可
function preview() { $("#print").show(); bdhtml=window.document.body.innerhtml; sprnstr="{c}"; //开始打印标识字符串有17个字符 eprnstr="{c}"; //结束打印标识字符串 prnhtml=bdhtml.substr(bdhtml.indexof(sprnstr)+17); //从开始打印标识之后的内容 prnhtml=prnhtml.substring(0,prnhtml.indexof(eprnstr)); //截取开始标识和结束标识之间的内容 window.document.body.innerhtml=prnhtml; //把需要打印的指定内容赋给body.innerhtml if (!!window.activexobject || "activexobject" in window) { //是否ie remove_ie_header_and_footer(); } window.print(); //调用浏览器的打印功能打印指定区域 window.document.body.innerhtml=bdhtml; // 最后还原页面 $("#print").hide(); } function remove_ie_header_and_footer() { var hkey_path; hkey_path = "hkey_current_user\\software\\microsoft\\internet explorer\\pagesetup\\"; try { var regwsh = new activexobject("wscript.shell"); regwsh.regwrite(hkey_path + "header", ""); regwsh.regwrite(hkey_path + "footer", ""); } catch (e) { } }