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 table header sorting implementation method

    JS table header sorting implementation method

    This article describes the implementation method of js header sorting. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows: <script type="text/javascript">//是否递减排序var isDescending = true;/*********
    2025-05-13
  • Customize the style of the &amp;lt;input type=&quot;file&quot;gt; element used when uploading files in HTML

    Customize the style of the &amp;lt;input type=&quot;file&quot;gt; element used when uploading files in HTML

    In web pages, you will basically use them when you need to upload files.<input type=file> Element, its default style: chrome: IE: No matter which of the above, the style is relatively simple and is not very harmonious with the style of many web pages. The
    2025-05-13
  • Recommended 21 most popular JavaScript frameworks in 2014

    Recommended 21 most popular JavaScript frameworks in 2014

    Below, we will introduce the 21 most popular JavaScript frameworks in 2014, specially prepared for front-end developers:) As we all know, the JavaScript framework is one of the best features of the JavaScript programming language. The JavaScript framework
    2025-05-13
  • AngularJS built-in commands

    AngularJS built-in commands

    Directive, I understand it as a way for AngularJS to manipulate HTML elements. Since the first step in learning AngularJS is to write the built-in instruction ng-app to indicate that the node is the root node of the application, instructions are already f
    2025-05-13
  • How to display div on object without being blocked by object animation

    How to display div on object without being blocked by object animation

    Today I made a menu button, moved the mouse to the button, and the function of the drop-down submenu appears. The implementation method is to put the submenu into a div and add a hover function to the menu button. But there is a div under the menu button,
    2025-05-13
  • js method to remove the first comma of a string

    js method to remove the first comma of a string

    The code copy is as follows: <script type="text/javascript">var s=',dddd';if (s.substr(0,1)==',') s=s.substr(1);document.write(s);</script> Down
    2025-05-13
  • Javascript core reading sentences

    Javascript core reading sentences

    In javascript, expressions are phrases, and statements are the whole sentence or command. Just as an English statement ends with a period, javascript ends with a semicolon. The expression calculates a value, but the statement makes something happen. One w
    2025-05-13
  • Summary of common methods for obtaining elements in JavaScript

    Summary of common methods for obtaining elements in JavaScript

    There are three common ways to obtain elements, namely, namely, namely, name through element ID, name through tag and name through class. getElementByIdDOM provides a method called getElementById, which will return a node object with the corresponding id
    2025-05-13
  • Recommended 5 commonly used JavaScript debugging skills

    Recommended 5 commonly used JavaScript debugging skills

    I've used printf debugging before, and since then I've always seemed to fix the bug faster with this method. In some cases, better tools are needed, here are some of the best ones, I'm sure you'll find them useful: 1. debugger; you can use
    2025-05-13
  • Newbie tutorial: Collection of common HTML elements

    Newbie tutorial: Collection of common HTML elements

    Before explaining this course: Let’s take a look at what a browser is: the so-called browser is a tool that can explain and execute HTML code. There is another concept that we need to figure out, browser! =IE, IE is just one of the browsers. In addition t
    2025-05-13
  • How to modify FlashSWF files in web pages

    How to modify FlashSWF files in web pages

    I saw a website made of flash, which is very beautiful. I wanted to do one according to it, but the technology is not in place yet. I want to download the flash in the web page and modify the flash file! I think this is a problem that many people encounte
    2025-05-13
  • HTML sub, sup tag production price in e-commerce website

    HTML sub, sup tag production price in e-commerce website

    html sub, sup tags create product price tags in e-commerce websites.
    2025-05-13
  • Implementation method of adding double quotes into html title

    Implementation method of adding double quotes into html title

    <a href="https://www.VeVb.com/" >Here is a link</a> tip: you can modify some code first and then run
    2025-05-13
  • JS restrict text box can only enter numeric method summary

    JS restrict text box can only enter numeric method summary

    Sometimes you need to restrict the type of content input in the text box. In this section, the regular expression restricts the text box to only enter numbers, decimal points, English letters, Chinese characters and other codes. For example, enter a posit
    2025-05-13
  • Methods for batch modifying file encoding format in javascript

    Methods for batch modifying file encoding format in javascript

    This article describes the method of batch modifying file encoding format in JavaScript. Share it for your reference. The details are as follows: Summary: I recently encountered a problem 'document garbled' when making the manual. After checking t
    2025-05-13