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
  • Guide to using the $scope method in angularJS

    Guide to using the $scope method in angularJS

    The code copy is as follows:<!doctype html><html><head><meta charset="utf-8"><title> Untitled Document</title></head>
    2025-05-18
  • JavaScript to obtain element size and size operation summary

    JavaScript to obtain element size and size operation summary

    1. Get the inline style of the element to copy the code code as follows: var obj = document.getElementById("test");alert(obj.height + "/n" + obj.width);// 200px 200px typeof
    2025-05-18
  • 24 beautiful personalized HTML form techniques

    24 beautiful personalized HTML form techniques

    HTML form objects are not rendered in different browsers in a consistent way. Although some objects, such as textbox and textarea, can obtain a consistent appearance in different browsers through css, most other objects that cannot control appearance thro
    2025-05-18
  • JavaScript learning notes: JS object

    JavaScript learning notes: JS object

    Default object date object Date, format: date object name = new Date([date parameter]) Date parameters: 1. Omitted (most commonly used); 2. English-numerical format: month and day, year 1 [hour: minute: seconds] For example: today=new Date("October 1
    2025-05-18
  • A summary of principles for writing HTML pages for email emails

    A summary of principles for writing HTML pages for email emails

    Since HTML email is not an independent HOST on this website, it is dependent on others. So writing HTML mail is very different from writing HTML pages. Because all mainstream mailboxes for netizens will more or less filter the HTML mail they receive in th
    2025-05-18
  • What does input type mean and commonly used methods to restrict input

    What does input type mean and commonly used methods to restrict input

    Commonly used methods to restrict input 1. Cancel the dotted box when the button is pressed, add the attribute value hideFocus or HideFocus=true to the input. Copy the code.
    2025-05-17
  • W3C Tutorial (5): W3C XML Activities

    W3C Tutorial (5): W3C XML Activities

    XML is designed to describe, store, transmit and exchange data. XML 1.0 is the latest version of XML. XML is designed to describe, store, transmit and exchange data. XML 1.0 is the latest version of XML. XML Tutorials To learn more about XML
    2025-05-17
  • About the location of the H1 tag for XHTML

    About the location of the H1 tag for XHTML

    There have been many discussions about H1 recently (in the article content page), and there are roughly two situations: 1. H1 should be used on the title of the article 2. H1 should be used on the title of the site, I believe that most people prefer the f
    2025-05-17
  • Related knowledge background and technical specifications for HTML 5 videos

    Related knowledge background and technical specifications for HTML 5 videos

    Wulin.com (www.vevb.com) Article Introduction: HTML 5 Video Overview.1 Video Introduction Quotes the introduction text in my translated document "Embed Audio and Video in HTML5 Pages": Today, the only reliable way to embed videos on web pages an
    2025-05-17
  • A brief discussion on how to edit treegrid in EasyUI

    A brief discussion on how to edit treegrid in EasyUI

    The master-slave table, the slave table is a treegrid. After loading the data, click on the node to enter the editing state. The code copy is as follows: columns : [ [ {title : "ID",field : "id",hidden : true}, {field : "pid"
    2025-05-17
  • Solutions to garbled problem of page form data with different encodings

    Solutions to garbled problem of page form data with different encodings

    Today I encountered a very magical problem. The user told me that the form on this website cannot get the return value after being submitted to the query system. The query result is 0 records, but the value can be searched for by the local pure html execu
    2025-05-17
  • Summary of how to find nodes by js

    Summary of how to find nodes by js

    This article summarizes the method of finding nodes by js. Share it for your reference. The specific analysis is as follows: Here are three methods of finding nodes: 1. Search according to id, and the return value is an object: the copy code is as follows
    2025-05-17
  • Introduction to the abstract factory pattern of JavaScript design pattern

    Introduction to the abstract factory pattern of JavaScript design pattern

    Description of abstract factory model 1. Problems of factory method model: In the factory method model, creating classes requires passing through factory classes. If you want to extend the program, you must modify the factory class. This violates the clos
    2025-05-17
  • Native JavaScript implements interlaced color change

    Native JavaScript implements interlaced color change

    Let’s learn from the basics together. Let’s learn the code below bit by bit. Then everyone should read it and learn it! ! ! The code copy is as follows:<html><head><title> js demo </title></head><body><script>document.writ
    2025-05-17
  • HTML5 Advanced Programming Pixel Processing and Particle Effects

    HTML5 Advanced Programming Pixel Processing and Particle Effects

    The pixel processing in HTML5 requires two functions: getImageData and putImageData. First, use getImageData to copy the pixel data in the canvas canvas, then process the obtained pixel data, and finally paste the processed data into c through putImageDat
    2025-05-17