`
花落痕大海
  • 浏览: 1812 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
var monthcode=$('#year option:selected').val()+'-'+$('#month option:selected').val()+'-01'; var staff_parent_code=$('#month_sr option:selected').val(); var month_dsr=$('#month_dsr option:selected').val(); if($.trim(staff_parent_code)!='') { jQuery("#list").GridUnload(); jqGr ...
javacript设计模式之prototype 1.函数等同于对象 函数(functions)在javascript中本身就是对象,它有方法和属性。关于函数的属性,prototype是比较重要的一个 Js代码 <body> <script language="javascript"> function foo(a,b){   return a*b; } alert(typeof foo.prototype);//object </script> </body> 我们可以为foo.prototype添加方法和属性 foo.p ...
Global site tag (gtag.js) - Google Analytics