DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> 簡介JavaScript中substring()方法的使用
簡介JavaScript中substring()方法的使用
編輯:JavaScript基礎知識     

 該方法返回一個String對象的一個子集。
語法

string.substring(indexA, [indexB])

下面是參數的詳細信息:

  •     indexA : 介於0和1小於字符串的長度的整數。
  •     indexB : (可選)介於0和字符串的長度的整數。

返回值:

  •     substring方法返回基於給定參數的新的子字符串。

例子:

<html>
<head>
<title>JavaScript String substring() Method</title>
</head>
<body>
<script type="text/javascript">

var str = "Apples are round, and apples are juicy.";

document.write("(1,2): "  + str.substring(1,2));
document.write("<br />(0,10): "  + str.substring(0, 10));
document.write("<br />(5): "   + str.substring(5));
</script>
</body>
</html>

這將產生以下結果:

(1,2): p
(0,10): Apples are
(5): s are round, and apples are juicy. 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved