您好,登錄后才能下訂單哦!
了解JavaScript函數與事件的知識點?這個問題可能是我們日常學習或工作經常見到的,希望通過這個文章能讓大家收獲頗深,下面是小編給大家帶來的參考內容,讓我們一起來看看吧!
JavaScript函數與事件
1. 自定義函數
<script type="text/javascript"> function 函數名(形參1,形參2,形參n){ 語句 }</script>
樣例如下:
<body> <script type="text/javascript"> function getArea(width,heigt){ var resule=width*heigt; document.write("面積為:"+resule); } </script> <script type="text/javascript"> getArea(3,4) </script> </body>
2.JavaScript系統函數
parseInt() 將字符串轉換為整數
parseFloat() 將字符串轉換為小數
isNaN() 判斷是否是NaN(數字)
eval() 運行以字符串形成的js代碼,返回執行結果
eval示例:
<body> <script type="text/javascript"> function getArea(){ var a=1; var b=2; var resule=eval(a+b); alert(resule); } </script> <script type="text/javascript"> getArea() </script> </body>
2.JavaScript事件
頁面事件:
onload() 頁面加載
onblur() 失去焦點
onfocus() 獲得焦點
onchange() 輸入框發生改變
鼠標事件:
onclick() 點擊
onmousedown() 鼠標移入
onmouseout() 鼠標移出
onmousemove() 鼠標移動
鍵盤事件:
onkeypress()
表單事件:
onsubmit()
onload示例:
<body> <script type="text/javascript"> window.onload=function(){ alert("頁面加載完成") } </script> </body>
JavaScript瀏覽器對象模型
window() 頂層對象
hostory() 瀏覽器記錄對象
location() 地址對象
document() 文檔對象
location() 屬性跟方法
window() 方法
window() 屬性
navigator()方法
navigator()屬性
screen()屬性
history()方法
感謝各位看完上述內容,你們對“JavaScript函數與事件的知識點”這篇文章大概了解了嗎?希望文章的內容對大家有所幫助,如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。