fck_dialog_common.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: fck_dialog_common.js
  12.  *  Useful functions used by almost all dialog window pages.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. // Gets a element by its Id. Used for shorter coding.
  18. function GetE( elementId )
  19. {
  20. return document.getElementById( elementId )  ;
  21. }
  22. function ShowE( element, isVisible )
  23. {
  24. if ( typeof( element ) == 'string' )
  25. element = GetE( element ) ;
  26. element.style.display = isVisible ? '' : 'none' ;
  27. }
  28. function SetAttribute( element, attName, attValue )
  29. {
  30. if ( attValue == null || attValue.length == 0 )
  31. element.removeAttribute( attName, 0 ) ; // 0 : Case Insensitive
  32. else
  33. element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive
  34. }
  35. function GetAttribute( element, attName, valueIfNull )
  36. {
  37. var oAtt = element.attributes[attName] ;
  38. if ( oAtt == null || !oAtt.specified )
  39. return valueIfNull ? valueIfNull : '' ;
  40. var oValue ;
  41. if ( !( oValue = element.getAttribute( attName, 2 ) ) )
  42. oValue = oAtt.nodeValue ;
  43. return ( oValue == null ? valueIfNull : oValue ) ;
  44. }
  45. // Functions used by text fiels to accept numbers only.
  46. function IsDigit( e )
  47. {
  48. e = e || event ;
  49. var iCode = ( e.keyCode || e.charCode ) ;
  50. event.returnValue =
  51. (
  52. ( iCode >= 48 && iCode <= 57 ) // Numbers
  53. || (iCode >= 37 && iCode <= 40) // Arrows
  54. || iCode == 8 // Backspace
  55. || iCode == 46 // Delete
  56. ) ;
  57. return event.returnValue ;
  58. }
  59. String.prototype.trim = function()
  60. {
  61. return this.replace( /(^s*)|(s*$)/g, '' ) ;
  62. }
  63. String.prototype.startsWith = function( value )
  64. {
  65. return ( this.substr( 0, value.length ) == value ) ;
  66. }
  67. String.prototype.remove = function( start, length )
  68. {
  69. var s = '' ;
  70. if ( start > 0 )
  71. s = this.substring( 0, start ) ;
  72. if ( start + length < this.length )
  73. s += this.substring( start + length , this.length ) ;
  74. return s ;
  75. }