随笔分类 - js
摘要:解决鼠标一直在左上角的问题 解决ctrl+A全后选都会被拖拽问题,会默认在浏览器地址搜索 封装成函数
阅读全文
摘要:<form method="post" id="formfile" enctype="multipart/form-data"> <table> <tr> <th>文件路径:</th> <!--新增accept属性选择特定格式图片--> <td><input class="easyui-filebo
阅读全文
摘要:/*消息提示begin*/jQuery.Info = function (msg) { $.messager.alert("温馨提示", msg, "info");};jQuery.Error = function (msg) { $.messager.alert("错误", msg, "error
阅读全文
摘要:function RetainedDecimalPlaces(num, del, spit) {//num :值 del:小数位 spit:是否使用千分位符 if (del != 0) { num = parseFloat(num).toFixed(del); //保留小数并四舍五入 } var s
阅读全文
摘要:文件名: Bll.js * 文件功能描述: 计算两个日期天数差的函数,通用,根据指定的一个日期和相差的天数,获取另外一个日期 * 作 者: liangjw * 创建标示: 2013-06-20 * 邮 箱: liangjw0504@163.com * 版权所有: Copyright (C) 【201
阅读全文
摘要:@{ Layout = null;} <!DOCTYPE html> <html><head> <meta name="viewport" content="width=device-width" /> <title>货位档案</title> @Scripts.Render("~/bundles/j
阅读全文
摘要:<script language="JavaScript"> javascript:window.history.forward(1); </script>
阅读全文
摘要:<script> function aclick(){ $("a").click(function () { var name=this.innerHTML; $($("#mainFrm").prev()[0]).html(name); //$("#mainFrm") }); } </script>
阅读全文
摘要:<script> $(function () { $("#login").css("opacity", "0.5"); }); </script>
阅读全文