Home  >  Article  >  Web Front-end  >  Summary of JavaScript knowledge points: functions and events

Summary of JavaScript knowledge points: functions and events

coldplay.xixi
coldplay.xixiforward
2021-01-07 10:10:161719browse

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>

The sample is as follows:

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

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>
		
	

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>	
	

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:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete
Previous article:What is jquery.min.jsNext article:What is jquery.min.js