Home> Web design tutorial
All Dreamweaver tutorial Javascript tutorial HTML tutorial CSS tutorial Experience and skills DHTML tutorial Web effects WEB standardization
Web design tutorial
  • JS uses for loop to loop through all cell contents of Table

    JS uses for loop to loop through all cell contents of Table

    JS traversal all cells of Table's content idea is to traverse all Rows of Table, traverse every column in the Row, and get the content of the cells in the Table function GetInfoFromTable(tableid) { var tableInfo = ""; va
    2025-03-29
  • hta script to view disk space

    hta script to view disk space

    <html><head><title>Disk Space View Script</title>
    2025-03-29
  • hta running the program

    hta running the program

    <html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta name="GENERATOR" content="Microsof
    2025-03-29
  • HTML5 Web Workers websites can also be implemented with multiple threads

    HTML5 Web Workers websites can also be implemented with multiple threads

    Comment: Web Workers is a new technology used to implement background processing in web applications. Web Workers is a new technology used to implement background processing in web applications. In HTML4, the programs created by js are all single-threaded
    2025-03-29
  • Summary of js event listening mechanism (event capture)

    Summary of js event listening mechanism (event capture)

    During the front-end development process, we often encounter the problem of adding events to page elements. There are many JS methods to add events, including directly added to the page structure, and some JS event monitoring methods. Since each browser h
    2025-03-29
  • Tips for drawing ellips in html5 canvas and keeping lines evenly thick and thin

    Tips for drawing ellips in html5 canvas and keeping lines evenly thick and thin

    Comment: Drawing ellips in Canvas is a very common requirement, but most browsers have not implemented this method yet, so they often use arc or arcTo method to combine scale deformation to draw ellips. Interested friends can learn about it. I hope it can
    2025-03-29
  • Methods for calling Flash across domains in JavaScript

    Methods for calling Flash across domains in JavaScript

    To create a prompt function for short messages on the page, I originally wanted to use bgsound under Audio+IE in HTML5, but I found that each browser has different decoding types for Audio, and I suddenly felt like I was crashing. There is no way to use F
    2025-03-29
  • Sample code to use JavaScript to draw lines using mouse

    Sample code to use JavaScript to draw lines using mouse

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
    2025-03-29
  • Methods to directly declare an object in js

    Methods to directly declare an object in js

    var ctrl = { init: function(){ this.a(); this.b(); }, name : "zs", a: function(){ alert("aa"); }, b: function(){ alert("
    2025-03-29
  • html5 offline cache usage example

    html5 offline cache usage example

    Comment: If you want to use this API, you must ensure that the corresponding mime type is configured on the server side. Take Tomcat as an example for you to give a detailed introduction. Interested people should not miss it. If you want to use this API,
    2025-03-29
  • HTML Component(HTC) small application

    HTML Component(HTC) small application

    Before the release of Microsoft's IE5.0 browser, the biggest challenge in web programming was that it was not easy to create components to achieve the purpose of code reuse and multi-page sharing. This problem has been plaguing web programmers in DHTM
    2025-03-29
  • Too many fields jquey method to quickly clear form content

    Too many fields jquey method to quickly clear form content

    I made a page for complex query, there were too many fields, I filled it out once, and it was very troublesome to clear the $('#myform')[0].reset(); Although the reset method can be part of it, if you have an element like this<input name="percent"
    2025-03-29
  • HTML5 structural elements:nav

    HTML5 structural elements:nav

    HTML5 structure elements<nav> Elements are built with links within a page or site, not every collection of links is a<nav> , for example: the sponsor's link list and search results page are not, because they are the main content of the current page.<n
    2025-03-29
  • Understanding of location object attributes in html documents and common usage

    Understanding of location object attributes in html documents and common usage

    A simple understanding of the location object: 1. The location object covers the current page (this page) or, more directly, it is the url information of the currently loaded html document 2. The location object is a property of the window object and can
    2025-03-29
  • Algorithm and examples for parsing four operation expressions in javascript

    Algorithm and examples for parsing four operation expressions in javascript

    When writing code, we sometimes encounter situations where we need to parse the four arithmetic expressions by ourselves. This article briefly introduces the use of JavaScript to implement the parsing of simple four arithmetic expressions. 1. Familiar wit
    2025-03-29