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
  • A brief discussion on JS date (Date) processing function

    A brief discussion on JS date (Date) processing function

    Get date 1, Date() - Returns the date and time of the day. 2. getDate() - Returns a day of the month from the Date object (1 ~ 31). 3. getDay() - Returns a day of the week from the Date object (0 ~ 6). 4. getMonth() -
    2025-05-03
  • New tag implementation solution for using HTML5 in old browsers such as IE6 series

    New tag implementation solution for using HTML5 in old browsers such as IE6 series

    Comment: HTML5 provides developers with many new tags, such as section, nav, article, header and footer. These tags are highly semantic and will be used frequently, but in IE6, IE7, IE8 and Firefox 2, old
    2025-05-03
  • JS method to determine whether an element is hidden

    JS method to determine whether an element is hidden

    Copy the code code as follows: if( document.getElementById("div").css("display")==='none') if( document.getElementById("div").css("display")=
    2025-05-02
  • My Node.js learning path (I)

    My Node.js learning path (I)

    1. Node.js introduces a lot of information on the Internet. I only simplify 1. What is node.js? From the core point of view: Node.js is an event-driven server-side javascript environment. That is to say, we can create it using javascript like using PHP, R
    2025-05-02
  • TinyEditor The simple and easy-to-use html WYSIWYG editor

    TinyEditor The simple and easy-to-use html WYSIWYG editor

    A few days ago, I introduced a domestic xhtml editor to you. Today I want to recommend TinyEditor to you. It is a simple and easy-to-use html WYSIWYG editor just released by leigeber.com, a well-known foreign web design blog. TinyEditor has the following
    2025-05-02
  • HTML checkbox Click the instruction text to select/uncheck the status

    HTML checkbox Click the instruction text to select/uncheck the status

    In web development, checkbox is not very convenient for users to operate, in order to facilitate users to operate checkbox, we can enable users to select/check checkbox when clicking the description text. The following is a simple method to implement the
    2025-05-02
  • Detailed description of common events and methods of html text

    Detailed description of common events and methods of html text

    Event description onactivate: fired when the object is set to the active element. onafterupdate: Triggered on the data binding object after successfully updating the associated object in the data source object. onbeforeactivate: The object is fired immedi
    2025-05-02
  • Detailed explanation of the application of four states of hyperconnection

    Detailed explanation of the application of four states of hyperconnection

    Although you think the reason may be a browser problem, it is more likely that your style definition is incorrect order. In order to ensure that you can see the connection styles in different states, the correct style order should be: link - visited - hov
    2025-05-02
  • Javascript front-end UI framework Kit usage guide: Kitjs dialog box component

    Javascript front-end UI framework Kit usage guide: Kitjs dialog box component

    As a UI library, I don’t plan to let everyone learn my Kit Core and memorize my API. This kind of follow-up learning method has no meaning at all. Today, jQuery is popular, everyone learns jQ, and tomorrow SeaJs will become popular, and everyone will hype
    2025-05-02
  • JavaScript implementation window.print() to remove header footer

    JavaScript implementation window.print() to remove header footer

    When printing, remove the header page footer before printing. Add the following code to var HKEY_Root, HKEY_Path, HKEY_Key; copy the code as follows: HKEY_Root="HKEY_CURRENT_USER"; HKEY_Path="//Software//Mi
    2025-05-02
  • TwoQueues cache model for JavaScript

    TwoQueues cache model for JavaScript

    The TwoQueues cache model mentioned in this article refers to the cache model of data in memory. No matter what language, you may need to put some data in memory to avoid repeated operations and reading. The most common scenario is the JQuery selector. Th
    2025-05-02
  • Methods for passing data between javascript browser windows

    Methods for passing data between javascript browser windows

    This article describes the method of passing data between JavaScript browser windows. Share it for your reference. The specific analysis is as follows: Abstract: In project development, we often encounter pop-up windows. Some use div to simulate pop-up ef
    2025-05-02
  • About IE tag LI text wrapping

    About IE tag LI text wrapping

    After a long time of struggle, I searched and found that some great people solved this problem. When using UL and LI to display text, IE browser does not have a default command to LI text length. If the text exceeds the width set by UL, then folds the lin
    2025-05-02
  • Analysis of the difference between javascript function declaration and function expression

    Analysis of the difference between javascript function declaration and function expression

    When writing functions in js, we usually declare a function in the form of convention function fn () {}. When reading some excellent plug-ins, we can't help but see the creation of functions such as var fn = function () {}. What's the difference b
    2025-05-02
  • HTML Table Tag Tutorial (19): Row Tag

    HTML Table Tag Tutorial (19): Row Tag

    <TR>The marked attribute is used to set the attributes of each row in the table, as shown in the following table:<TR> Mark attribute attribute description A
    2025-05-02