01 2015 档案
摘要:var pList = ""; $("[name='ckdProd']").each(function () { if ($(this).is(':checked')) { pList += $(this).v...
阅读全文
摘要:$(function(){ //全局: document.onkeydown = function(e){ var ev = document.all ? window.event : e; if(ev.keyCode==13) { // 如(ev.ctrlKey && ev...
阅读全文
摘要:/// /// 检测串值是否为合法的网址格式 /// /// 要检测的String值 /// 成功返回true 失败返回false public static bool CheckIsUrlFormat(string strValue) { r...
阅读全文
摘要:function countDown(secs, surl) { if (--secs > 0) {setTimeout("countDown(" + secs + ",'" + surl + "')", 1000);}else {window.location.href = surl;}}
阅读全文