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
  • Add music to Flash page using Html

    Add music to Flash page using Html

    Now more and more people are using flash to build websites. Since mx2004 supports some HTML tags, we can use them to enrich the page, not just text. Here is something to note:<img> Image tag description: The function of this tag is not only to insert pict
    2025-01-17
  • Markup language: What are the characteristics of XHTML compared with HTML?

    Markup language: What are the characteristics of XHTML compared with HTML?

    At the end of 2000, the international W3C (World Wide Web Consortium) organization announced the release of XHTML version 1.0. XHTML 1.0 is a new language optimized and improved on the basis of HTML 4.0, aiming at XML-based applications. XHTML is an enhan
    2025-01-17
  • WordPress 2.8 Beta1 New Features Trial

    WordPress 2.8 Beta1 New Features Trial

    There is an Add New Themes in Apperarance, which allows users to directly search for themes in the official WordPress theme site in the background.
    2025-01-17
  • JS judgment cannot be empty example code

    JS judgment cannot be empty example code

    Copy the code code as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <h
    2025-01-17
  • Summary of commonly used JavaScript verification regular expressions

    Summary of commonly used JavaScript verification regular expressions

    Below are some of the more commonly used regular expressions that I have collected, because they may be used more often during form validation. Specially issued for all friends to use together. hehe. Regular expression for matching Chinese characters: [u4
    2025-01-17
  • The difference between parentNode, parentElement, childNodes, and children in Js

    The difference between parentNode, parentElement, childNodes, and children in Js

    parentElement Gets the parent object in the object hierarchy. parentNode gets the parent object in the document hierarchy. childNodes Gets a collection of HTML elements and TextNode objects that are direct descendants of the specified object. children get
    2025-01-17
  • Summary of keyboard KeyCode value list

    Summary of keyboard KeyCode value list

    keycode 0 =keycode 1 =keycode 2 =keycode 3 =keycode 4 =keycode 5 =keycode 6 =keycode 7 =keycode 8 = BackSpace BackSpacek
    2025-01-17
  • Five ways to write better CSS code instantly

    Five ways to write better CSS code instantly

    Whether you use Eric Meyer Reset, YUI Reset, or write your own reset code, just use it.
    2025-01-17
  • XHTML+CSS: call style sheet

    XHTML+CSS: call style sheet

    To design a website based on web standards, the transition method mainly uses XHTML+CSS, and CSS style sheets are essential. This requires all web designers to be proficient in CSS. If you have not used it before, start learning now. To create a website t
    2025-01-17
  • Html web page head area specification knowledge

    Html web page head area specification knowledge

    The head area refers to the HTML code of the homepage<head> and</head> content between. Required tags 1. Company copyright annotation<!--- The site is designed bywebjx.com 06/2006 ---> 2. Web page display character set Simplified Chinese
    2025-01-17
  • Comprehensive collection of event objects in IE and Firefox browsers

    Comprehensive collection of event objects in IE and Firefox browsers

    window.event IE: There is a window.event object FF: There is no window.event object. Event objects can be passed as arguments to functions. For example, onmousemove=doMouseMove(event) The current coordinates of the mouse IE: event.
    2025-01-17
  • Two ways to assign values ​​and pass parameters to onclick using js

    Two ways to assign values ​​and pass parameters to onclick using js

    1) When the method has no parameters, the value can be assigned directly using onclick = method name. Copy the code as follows: window.onload = function() {$('btnTest').onclick = test; }function test() {alert
    2025-01-17
  • Adaptive solution to images under div

    Adaptive solution to images under div

    We (especially novices like me) often encounter a problem - picture adaptation. This problem is very common. In the article area and forums, it can be said that wherever pictures need to be uploaded, this problem exists, and people ask about it from time
    2025-01-17
  • JavaScript simulation implements C# String.format function function code

    JavaScript simulation implements C# String.format function function code

    C# string.format function is used in many places, so I implemented a simple version using js: copy the code as follows: String.format = function (){var formatStr = arguments[0];if ( t
    2025-01-17
  • Briefly describe the problem of margin overlay in CSS web page layout

    Briefly describe the problem of margin overlay in CSS web page layout

    Margin merging means that when two vertical margins meet, they form a single margin. The height of the merged margin is equal to the greater of the heights of the two merged margins. Margin merging (overlapping) is a fairly simple concept. However, when i
    2025-01-17