摘要:
1 //合并 2 dt.Merge(dt2);3 //去重 4 dt = dt.AsDataView().ToTable(true); 阅读全文
摘要:
1 //合并 2 dt.Merge(dt2);3 //去重 4 dt = dt.AsDataView().ToTable(true); 阅读全文
摘要:
//随机排序 选取前5条数组.sort(function(){return Math.random()>0.5?-1:1;}) 阅读全文
摘要:
ClientScript.RegisterClientScriptBlock 不执行页面中 form标签必须加入 runat=server 阅读全文
摘要:
jquery 1.9checkbox 是否选中if($("#chk_selectedall").prop('checked'))checkbox 选中$("#chk_selectedall").prop('checked',true)checkbox 取消选中$("#chk_selectedall").prop('checked',false)checkbox 反选$("#chk_selectedall").click(function () { $("[i 阅读全文
摘要:
原文:https://developer.mozilla.org/en-US/docs/JavaScript/Guide/Closures老外写的很详细,有兴趣的可以看原文。(不得不佩服老外的逻辑思维能力)下面是老外说的一个稍微有趣的例子://在这个例子中,定义了一个函数makeAdder(x),它接收一个参数x和返回一个新函数。//返回新函数接受单个参数y,并返回x和y的总和。//在本质上,是一个函数makeAdder工厂//add5和add10都闭包。他们共享相同的函数体定义,但存储在不同的环境。在add5环境,x是5。至于add10而言,x是10。function makeAdder(x 阅读全文
摘要:
1,Html.Action 使用指定参数调用指定子操作方法并以 HTML 字符串形式返回结果。Html.Action() 1 <div id="HtmlAction"> 2 3 @Html.Action("ActionName"); 4 5 @Html.Action("ActionName", "ControlName"); 6 7 @{ 8 object a = null; 9 10 }11 @Html.Action("A... 阅读全文
摘要:
第一种:objlist.ConvertAll(o => (MyClass)o)第二种: List<MyClass>mylist=newList<MyClass>(); mylist.AddRange(objlist.OfType<MyClass>()); 阅读全文
摘要:
Math.pow(2,53) // => 9007199254740992: 2 的 53次幂 Math.round(.6) // => 1.0: 四舍五入 Math.ceil(.6) // => 1.0: 向上求整 Math.floor(.6) // => 0.0: 向下求整 Math.abs(-5) // => 5: 求绝对值 Math.max(x,y,z) // 返回最大值 Math.min(x,y,z) // 返回最小值 Math.random() // 生成一个大... 阅读全文
摘要:
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>无标题页</title> <script type="text/javascript"> function thisTest(obj) { alert(obj.getAttribute('dept')); } function showguid(){ var a=document.getElementById(&quo 阅读全文
|