⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 javascript.txt

📁 session about the javascript
💻 TXT
字号:
JavaScript


<script language="javascript" type="text/javascript">

</script>

	1. methods creation

	2. variable Types
		String Handling
			comparision
			split srrings
			concadination
		Integer Handling
			Parsing
	3. arrays
		single dimension
		double dimension
	4. if statements

	5. Loop statements
		for loop
		while loop
	

How The Html controls handled in Java script methods

	1. About Document Object Model 
	
		document.getElementById()
		 
		document.getElementsByName()
		
		Array of Objects
			
			objPedigree = document.getElementsByName("srcCmbPedigree");	
			for(i=0;i<objPedigree.length; i++){

				alert(objPedigree[i].value);	
			}

		create objext for form

		
	2.Handling TextBox
		
		
	
	3.Handling combo box
		
		How to get value
		How to get Test
		How to get index
		How to remove one row
		How to add one row
		about space issue in combo
		how to hidden combo box - Need to apply css

	4.Handling Obtion Button

	5.Handling Hidden Variables and Span Ids

	6.Handling Date

		Date Picker
		Date Comparision
			if( (getDateVal(Date1)  < getDateVal(Date2)) ){
		
				alert("Date2 is greater than Date1");
			}else{
				alert("Date1 is greater than Date2");
			}


	7.Handling File upload button
		
	8.form submit through javascript

		link
		action

	9. anchor tag

	10.Handling single quotes and double quotes

	11.About page On Load method 
		
		<body onLoad="javascript:fillOpener();" >

	12.chid window creation
		
		
	if No Javascript what will happen ?


Dynamic Controls creations


	* Difference between control Id and control Name ?

	1.table row creation 
	2.table row deletion
	3.table coloumn creation
	4.table coloumn deletion
	5.insert controls inside table coloumns
	
	7.controls over span ids

	8.Dynamically create,update,modify,delete combo box values

	9.Dynamically create text box
	
	10.Dynamically create date pickers

	11. How to use the VM code in Javascript

	12. JavaScript Regular Expression


	
workshop

	1.Name field ( Not allowing special character,not allowed more than 20 charcters)
	2.password field
	3.Confirm password field  (validate password and confirm password field. both should be same otherwise alert)
	4.Email address ( validate this should be any one of valid email format)
	5.phone number ( should be numeric . not allow any special character except - symbol )
	6.county combo box (India,Autralia,England,Ameriaca,Pakistan - country code 101,102,103,104,105)
	7.State combo box (States should be loaded based on the country u choose in county combo box)

		states
			Delhi - 101
			Chennai - 101
			Mumbai  - 101
			kerala  - 101
			kashmir - 101

			Merlborne - 102
			sitny     - 102
			
			London    - 103
			oxford	  - 103
			cambridge - 103

			Newyork   -104
			washingtan-104
			florida   -104
			california -104
			
			Karachi - 105
			Lahore  -105

	8.Gender  use option button

	9.check list
			
		like personality
	
			Sachin, sania mirsa,vishwanath anand
			Rajini, Kamal, karthik
			Gndhiji, Abdul kalam , Bharathi
			
			
	10 photo must be attached
				
	all the details must be show as detailed page




⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -