Home Web Front-end JS Tutorial Summary of JavaScript knowledge points: functions and events

Summary of JavaScript knowledge points: functions and events

Jan 07, 2021 am 10:10 AM
javascript

Summary of JavaScript knowledge points: functions and events

Related free learning recommendations: javascript (video)

JavaScript function With events

1. Custom function

<script>
	function 函数名(形参1,形参2,形参n){
			语句		}</script>
Copy after login

The sample is as follows:

	<script>
		function getArea(width,heigt){
			var resule=width*heigt;
			document.write("面积为:"+resule);
		}
	</script>
		<script>
			getArea(3,4)
		</script>
		
	
Copy after login

2.JavaScript system function

  • parseInt() Convert the string to an integer
  • parseFloat() Convert the string to a decimal
  • isNaN() Determine whether it is NaN (number)
  • eval() runs the js code formed as a string and returns the execution result
##eval example:

 
	<script>
		function getArea(){
			var a=1;
			var b=2;
			var resule=eval(a+b);
			alert(resule);
		}
	</script>
		<script>
			getArea()
		</script>
		
	
Copy after login

2 .JavaScript event Page event:
onload() Page loading
onblur() Lose focus
onfocus() Gain focus
onchange() Input box changes
Mouse Event:
onclick() click
onmousedown() mouse move in
onmouseout() mouse move out
onmousemove() mouse move
Keyboard event:
onkeypress()
Form event :
onsubmit()

onload example:

 
	<script>
			window.onload=function(){
				alert("页面加载完成")
			}
		</script>	
	
Copy after login

JavaScript Browser Object Model

window() Top-level object hostory() browser record object
location() address object
document() document object

location() properties and methods


window() 属性 window( ) method

Summary of JavaScript knowledge points: functions and events window() attribute

Summary of JavaScript knowledge points: functions and events navigator() method

Summary of JavaScript knowledge points: functions and events navigator() attribute

Summary of JavaScript knowledge points: functions and events screen() attribute

Summary of JavaScript knowledge points: functions and events history() method

Summary of JavaScript knowledge points: functions and events

The above is the detailed content of Summary of JavaScript knowledge points: functions and events. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to implement an online speech recognition system using WebSocket and JavaScript

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to implement an online reservation system using WebSocket and JavaScript

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

How to use JavaScript and WebSocket to implement a real-time online ordering system

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

Simple JavaScript Tutorial: How to Get HTTP Status Code

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecasting system

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

How to use insertBefore in javascript

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

How to get HTTP status code in JavaScript the easy way

See all articles