fckcoreextensions.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: fckcoreextensions.js
  12.  *  Some extensions to the Javascript Core.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. // Extends the Array object, creating a "addItem" method on it.
  18. Array.prototype.addItem = function( item )
  19. {
  20. var i = this.length ;
  21. this[ i ] = item ;
  22. return i ;
  23. }
  24. Array.prototype.indexOf = function( value )
  25. {
  26. for ( var i = 0 ; i < this.length ; i++ )
  27. {
  28. if ( this[i] == value )
  29. return i ;
  30. }
  31. return -1 ;
  32. }
  33. String.prototype.startsWith = function( value )
  34. {
  35. return ( this.substr( 0, value.length ) == value ) ;
  36. }
  37. // Extends the String object, creating a "endsWith" method on it.
  38. String.prototype.endsWith = function( value, ignoreCase )
  39. {
  40. var L1 = this.length ;
  41. var L2 = value.length ;
  42. if ( L2 > L1 )
  43. return false ;
  44. if ( ignoreCase )
  45. {
  46. var oRegex = new RegExp( value + '$' , 'i' ) ;
  47. return oRegex.test( this ) ;
  48. }
  49. else
  50. return ( L2 == 0 || this.substr( L1 - L2, L2 ) == value ) ;
  51. }
  52. String.prototype.remove = function( start, length )
  53. {
  54. var s = '' ;
  55. if ( start > 0 )
  56. s = this.substring( 0, start ) ;
  57. if ( start + length < this.length )
  58. s += this.substring( start + length , this.length ) ;
  59. return s ;
  60. }
  61. String.prototype.trim = function()
  62. {
  63. return this.replace( /(^s*)|(s*$)/g, '' ) ;
  64. }
  65. String.prototype.ltrim = function()
  66. {
  67. return this.replace( /^s*/g, '' ) ;
  68. }
  69. String.prototype.rtrim = function()
  70. {
  71. return this.replace( /s*$/g, '' ) ;
  72. }
  73. String.prototype.replaceNewLineChars = function( replacement )
  74. {
  75. return this.replace( /n/g, replacement ) ;
  76. }