WEB开发网
开发学院网页设计JavaScript Prototype实战教程----16.string 阅读

Prototype实战教程----16.string

 2010-09-14 13:10:01 来源:WEB开发网   
核心提示:本文示例源代码或素材下载 <html><head><title>String Test</title><script src="prototype.js"></script><script>function

本文示例源代码或素材下载


<html>
<head>
<title>String Test</title>
<script src="prototype.js"></script>
<script>
function testStrip()
{
  var str=new String('    wanfangdata   ');
  alert(str.strip()); 
  }
  function teststripTags()
{
  var str=new String('<html>2002<head>2005<body> ');
  alert(str.stripTags()); 
  }
  function testtruncate()
{
  var str=new String('king123456789987654321');
  alert(str.truncate(8,'*')); 
  }
  
  function testcamelize()
  {
    var str=new String('Background-color')
    alert(str.camelize())
    }
    function testcapitalize()
  {
      var str=new String('back');
  alert(str.capitalize());
    }
    
function testDasherize()
{
  var str=new String('Hello_World');
  alert(str.dasherize()); 
  }

function testinspect()
{
  alert("sdfj"sfa".inspect() );
  }
  function testgsub()
  {
    alert("skdjfAsfdjkAdk".gsub(/A/,function(match) {return match[0].toLowerCase()}));
    }
    function testScan()
    {
      alert("skdjfAsfdjkAdk".scan(/A/,function(){alert('have a A')}));
      }
  function testUnderscore()
  {alert('borderBottomWidth'.underscore());

1 2  下一页

Tags:Prototype 实战 教程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接