javascript in the browser
play

Javascript in the browser Thierry Sans Example <html> - PowerPoint PPT Presentation

Javascript in the browser Thierry Sans Example <html> <body> <script type="text/javascript"> document.body.innerHTML = "<h1>This is a heading</h1>"; </script> </body>


  1. Javascript in the browser Thierry Sans

  2. Example <html> <body> <script type="text/javascript"> document.body.innerHTML = "<h1>This is a heading</h1>"; </script> </body> </html>

  3. Javascript: Inline, embedded or separate file? Inline <button onclick="console.log("Hello World!);">Click me</button> Embedded <script type="text/javascript"> console.log("Hello World!); </script> Separate file <script src="js/script.js"></script>

  4. Javascript in the browser is restrictive ✓ You can access elements of the webpage and the browser ✓ You can track user actions on the webpage (events) ✓ You can create threads (web workers) ✓ You can open sockets (web sockets) ✓ . . . ๏ You cannot access the file system (only via the upload form) ๏ You cannot access to other programs ๏ You cannot access to other tabs in the browser ๏ . . .

  5. The Browser

  6. Pop-up Boxes dialog box with “ok” button alert("hello world!") confirm("are you sure?") dialog box with “ok” and “cancel” buttons input box with prompt text prompt("Name?","John") and default value

  7. The Browser the visitor's screen screen the browser itself browser the current browser window window the current url url Back and forward URLs history

  8. Document Object Model

  9. image source: wikipedia

  10. Node accessors The root node document Accessors document.getElementById("id") document.getElementByTagName("p"); document.getElementByClassName("class"); document.querySelector("#id .class p"); document.querySelectorAll("#id .class p");

  11. DOM methods the content of x x.innerHTML the attributes nodes of x x.attributes css of x x.style x.parentNode the parent node of x x.children the child nodes of x x.appendChild insert a child node to x x.removeChild remove a child node from x ... ... https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model

  12. Events

  13. DOM events and handlers when e is fully loaded e.onload when e is clicked e.onclick e.onsubmit when e is submitted e.onhover when the mouse is on top e when a key is pressed while e is in focus e.onkeydown ... ... https://developer.mozilla.org/en-US/docs/Web/Events

  14. User-defined events and listeners // Listen for the event document. addEventListener (' onSomething ', function(e){ ... }); // Dispatch the event document. dispatchEvent (new Event (' onSomething '));

  15. Custom events // Listen for the custom event document. addEventListener (' onSomething ', function(e){ console.log( e.detail ); }); // Dispatch the custom event document. dispatchEvent (new CustomEvent (' onSomething ', { e.detail : 'Hello World!}));

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend