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
  • Share various Chinese encoding conversion classes implemented by PHP

    Share various Chinese encoding conversion classes implemented by PHP

    Currently, the encoding conversions that can be realized in this class library include: Simplified Chinese GB <-> Traditional Chinese BIG5 encoding interchange, Simplified/Traditional Chinese-> Pinyin one-way conversion, Simplified/Traditional Ch
    2025-05-22
  • Analysis of the usage of tag statements in JavaScript

    Analysis of the usage of tag statements in JavaScript

    This article analyzes the usage of tag statements in JavaScript. Share it for your reference. The specific analysis is as follows: I recently looked at w3school and then saw the js part. <!DOCTYPE html><html><body><script>cars=["BMW","Volvo"
    2025-05-22
  • innerHTML application

    innerHTML application

    blank's blog: http://www.planabc.net/innerHTML attribute is very popular because it provides a simple way to completely replace the content of an HTML element. Another method is to use the DOM Level 2 API (removeChild)
    2025-05-22
  • html5 IE6 structure compatible implementation code

    html5 IE6 structure compatible implementation code

    Comment: html5 is compatible with IE6 structure implementation code. If you need it, please refer to document.createElement('header'); document.createElement('nav'); document.createElement(
    2025-05-22
  • JS implements the method of clicking on the color block to switch the background color of the specified area

    JS implements the method of clicking on the color block to switch the background color of the specified area

    This article describes the method of JS to switch the background color of the specified area by clicking on the color block. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows:<html><head><title> J
    2025-05-22
  • IE conditional comments for XHTML

    IE conditional comments for XHTML

    Conditional annotation is a unique function of IE, which can process separate XHTML code for IE series products. Note that it is mainly aimed at XHTML, not CSS. Conditional annotation function is very powerful, and can make true and false judgments, such
    2025-05-22
  • Javascript traversal of Html Table example (including content and attribute values)

    Javascript traversal of Html Table example (including content and attribute values)

    1: Iterate over and output the table median value<table id="tb"><tr><td></td></tr><tr><td></td></tr></table> function f(){var t=document.getElementById("tb
    2025-05-22
  • A brief discussion on javascript debugging

    A brief discussion on javascript debugging

    I have been complaining recently. Everyone knows that the web front-end has become very heavy compared to a few years ago. Various js frameworks, various objects, and many projects, public modules will be extracted. The UI display of these modules is the
    2025-05-22
  • Text box textarea tag in HTML

    Text box textarea tag in HTML

    <textarea></textarea>Used to create a text box that can enter multiple lines. This flag pair is used for<form></form> Signs between pairs.<textarea> Have the following properties: (1) onchange specifies the function to be called when the control changes (
    2025-05-22
  • Example of whether to detect browser version, core, or mobile terminal

    Example of whether to detect browser version, core, or mobile terminal

    Detect the browser version, core, system and whether the code is copied on the mobile side as follows:/*** check browser version* @authors K* @date 2014-04-11 14:48:39* @version 1*//*** detect b
    2025-05-22
  • How to judge whether the customer service QQ number is online or offline

    How to judge whether the customer service QQ number is online or offline

    This article describes how JS determines whether the customer service QQ number is online or offline. Share it for your reference. The specific analysis is as follows: I don’t know when it started. The code of QQ’s official online offline status can no lo
    2025-05-22
  • Introduction to the use of anchor points (named anchors) in html

    Introduction to the use of anchor points (named anchors) in html

    The following information is compiled from the Internet 1. Anchor points are a type of hyperlinks in web page production, also known as naming anchors. Naming anchors are like a quick locator, a hyperlink within a page, and are quite common to use. Englis
    2025-05-22
  • Block-level tags and inline tags for common HTML

    Block-level tags and inline tags for common HTML

    address - address block - block reference center - center aligned block (not recommended) dir - directory list (kicked out of HTML5) div - commonly used can no longer be used dl - list fieldset - a box form containing form group -
    2025-05-22
  • Detailed explanation of javascript timer

    Detailed explanation of javascript timer

    The basic format of timer: the copy code code is as follows: setInterval(function(){code},1000); /* Description: 1.setInterval will return a timer ID value and can be received in this way. var setId = setInterval(.....); 2. Connect
    2025-05-22
  • How to solve the problem of DIV layer being obscured by Flash animation?

    How to solve the problem of DIV layer being obscured by Flash animation?

    Today I tested the interaction between the div layer and flash, and found that the div layer was always covered by the flash layer. I searched on Baidu for a while and said it was just added. After I added it, the problem was solved under ie, but it seeme
    2025-05-22