HTML5 Web Storage von Eduonix Learning Solutions

video locked

Über den Vortrag

Der Vortrag „HTML5 Web Storage“ von Eduonix Learning Solutions ist Bestandteil des Kurses „HTML 5 Advanced Features“. Der Vortrag ist dabei in folgende Kapitel unterteilt:

  • What is Web Storage?
  • Detecting HTML 5 Storage Support
  • Types of Web Storage
  • Syntax for Web Storage
  • Newsletter
  • Implementing Java Script
  • Show E-Mail

Quiz zum Vortrag

  1. Web storage is faster and more secure.
  2. Web storage doesn't need to be sent with every HTTP request like Cookies does.
  3. Cookies are able to store a larger amount of data
  1. localStorage()
  2. sessionStorage()
  3. remoteStorage()
  4. browserStorage()
  1. localStorage.setItem("key1", "value1");
  2. localStorage["key1"] = "value1";
  3. localStorage.set ("key1", "value1");
  4. localStorage(‘key1’ => ‘value1’); 
  5. None of the above
  1. sessionStorage() is gone when the browser closes, Local is there until its removed
  2. localStorage() is gone when the browser closes, sessionStorage() is there until its removed
  3. localStorage() and sessionStorage() have completely different Interfaces
  4. sessionStorage() can hold strings only while localStorage() can hold any data type

Dozent des Vortrages HTML5 Web Storage

 Eduonix Learning Solutions

Eduonix Learning Solutions

Eduonix Learning Solutions - The Knowledge Edge

Eduonix creates and distributes high quality technology training content. The team of industry professionals have been training manpower for more than a decade. Eduonix aims to teach technology the way it is used in industry and professional world. The expertness of the professional team of trainers ranges from Mobility, Web to Enterprise as well as Database and Server Administration.

Kundenrezensionen

(1)
5,0 von 5 Sternen
5 Sterne
5
4 Sterne
0
3 Sterne
0
2 Sterne
0
1  Stern
0


Auszüge aus dem Begleitmaterial

... can store data on a users local computer. No more cookies we had to ...

... request. It only is included when asked for. This gives a big advantage over cookies ...

... web storage objects, local and session difference: localStorage – Stores data with no ...

... They are stored as strings but can be ...

... Remove a value: removeItem("key1"); remove all values: localStorage.clear(); ...