default.js
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. // JavaScript Document
  2. function attachXMenu(objid){
  3. var tds=objid.getElementsByTagName('td');
  4. for(var i=0;i<tds.length;i++){
  5. with(tds[i]){
  6. onmouseover=function(){
  7. with(this){
  8. filters[0].apply();
  9. style.background='#4499EE'; //这是鼠标移上去时的背景颜色
  10. //style.border='1px solid #ffffff'; //边框
  11. style.color='#ffffff'; //文字颜色
  12. filters[0].play();
  13. }
  14. }
  15. onmouseout=function(){
  16. with(this){
  17. filters[0].apply();
  18. style.background=''; //这是鼠标离开时的背景颜色
  19. //style.border='1px solid'; //边框
  20. style.color='black'; //文字颜色
  21. filters[0].play();
  22. }
  23. }
  24. }
  25. }
  26. }
  27. function MM_findObj(n, d) { //v4.01
  28.   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
  29.     d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  30.   if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  31.   for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  32.   if(!x && d.getElementById) x=d.getElementById(n); return x;
  33. }
  34. function MM_showHideLayers() { //v6.0
  35.   var i,p,v,obj,args=MM_showHideLayers.arguments;
  36.   for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
  37.     if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
  38.     obj.visibility=v; }
  39. }
  40. function fPopUpCalendarDlg(){
  41. var ctrlobj=event.srcElement;
  42. showx = event.screenX - event.offsetX - 4 ; 
  43. showy = event.screenY - event.offsetY + 18; 
  44. newWINwidth = 210 + 4 + 18;
  45. retval = window.showModalDialog("../js/CalendarDlg.htm", "", "dialogWidth:197px; dialogHeight:210px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;help:no;scrollbars:no;Resizable=no; "  );
  46. if( retval != null ){
  47. ctrlobj.value = retval;
  48. }else{
  49. //alert("canceled");
  50. }
  51. ctrlobj.blur();
  52. }