單項選擇題

分析下面的Javascript代碼段,輸出結果是()
var mystring=”I am a student”;
var a=mystring.substring(9,13);
document.write(a);

A.stud
B.tuden
C.uden
D.udent


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題在HTML頁面中包含一個按鈕控件mybutton,如果要實現(xiàn)點擊該按鈕時調用已定義的Javascript函數(shù)compute,要編寫的HTML代碼是()

A.<input name=”mybutton” type=”button” onBlur=”compute()”value=”計算”> 
B.<input name=”mybutton” type=”button” onFocus=”compute()”value=”計算”> 
C.<input name=”mybutton” type=”button” onClick=”function compute()”value=”計算”> 
D.<input name=”mybutton” type=”button” onClick=”compute()”value=”計算”>

2.單項選擇題下列選項中關于瀏覽器對象的說法錯誤的是()

A.history對象記錄了用戶在一個瀏覽器中已經(jīng)訪問過的URLs
B.location對象相當于IE瀏覽器中的地址欄,包含關于當前URL地址的信息
C.location對象是history對象的父對象
D.location對象是window對象的子對象

4.單項選擇題在HTML頁面上編寫Javascript代碼時,應編寫在()標簽中間。

A.<javascript>和</javascript>
B.<script>和</script>
C.<head>和</head>
D.<body>和</body>