javascript學習2

來源:互聯網
上載者:User

標籤:

上次我們瞭解到JavaScript提供了一組以window為核心的對象,實現了對瀏覽器視窗的存取控制。JavaScript中定義了6種重要的對象:
    • window對象       表示瀏覽器中開啟的視窗;
    • document對象    表示瀏覽器中載入頁面的文檔對象;
    • location對象        包含了瀏覽器當前的URL資訊;
    • navigation對象    包含了瀏覽器本身的資訊;
    • screen對象          包含了用戶端螢幕及渲染能力的資訊;
    • history對象         包含了瀏覽器訪問網頁的曆史資訊。
For/In 迴圈

   JavaScript for/in 語句迴圈遍曆對象的屬性:

var person={fname:"John",lname:"Doe",age:25};for (x in person)  {  txt=txt + person[x];  }
JavaScript try catch 的應用:
<script>
function myFunction()
{
try
{
var x=document.getElementById("demo").value;
if(x=="")    throw "值為空白";
if(isNaN(x)) throw "不是數字";
if(x>10)     throw "太大";
if(x<5)      throw "太小";
}
catch(err)
{
var y=document.getElementById("mess");
y.innerHTML="錯誤:" + err + "。";
}
}
</script>

javascript學習2

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.