當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


javascript String constructor用法及代碼示例


JavaScript中的String構造函數屬性用於返回對象的字符串構造函數。此屬性返回的函數隻是對該函數的引用,而不是包含函數名稱的字符串。 JavaScript數字構造函數,字符串構造函數和布爾構造函數分別返回函數Number() {[本機代碼]},函數String() {[本機代碼]}和函數Boolean() {[本機代碼]}。

用法:

string.constructor

返回值:函數String() {[本地代碼]}


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        JavaScript String constructor Property 
    </title> 
</head> 
  
<body> 
    <h2> 
        Welcome to GeeksforGeeks 
    </h2> 
      
    <p> 
        Click the button to see string 
        contructor property. 
    </p> 
      
    <button onclick="myGeeks()"> 
        click me 
    </button> 
      
    <p id="GFG"></p> 
      
    <!--Script to use string constructor property-->
    <script> 
        function myGeeks() { 
            var str = "Hello World!"; 
              
            document.getElementById("GFG").innerHTML 
                    = str.constructor; 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了String構造函數屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • 蘋果Safari
  • 火狐瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自ProgrammerAnvesh大神的英文原創作品 JavaScript | String constructor Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。