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 simple website guide for making node+express+jade

    A simple website guide for making node+express+jade

    1. Create project folder: my_jade2. Download express and jade packages locally. I personally don’t like downloading them globally. I like to go down to the project folder. 3. Create related folders and files. index.js:style.cssgys.jade code: index.jade:la
    2025-06-05
  • Don't forget to close HTML tags

    Don't forget to close HTML tags

    Building web pages that meet web standards has always been a topic that VeVb.com discusses with everyone. Do you remember to close all xhtml elements? Some elements in html do not need to be closed. When the next element starts, the previous element is au
    2025-06-05
  • 7 Things to Note to Make JavaScript Better

    7 Things to Note to Make JavaScript Better

    With the improvement of browser performance and the steady adoption of the new HTML5 programming interface, the volume of JavaScript on web pages is gradually increasing. However, a poorly written program has the potential to break the entire website, fru
    2025-06-05
  • Deep understanding of JavaScript series (45): Detailed explanation of the code reuse mode (avoidance)

    Deep understanding of JavaScript series (45): Detailed explanation of the code reuse mode (avoidance)

    Introducing any programming, code reuse is proposed. Otherwise, if you need to write a new program every time you develop a new program or write a new function, then it will be a waste. However, code reuse is also good or bad. In the next two articles, we
    2025-06-05
  • Organize common touch events for HTML5 mobile development

    Organize common touch events for HTML5 mobile development

    This article mainly introduces the compilation of common touch events developed by HTML5 mobile terminal. The event objects of touch events are basically corresponding to the attributes of the mouse operation. Friends who need it can refer to the HTML5. H
    2025-06-05
  • Some tips on this keyword in Javascript

    Some tips on this keyword in Javascript

    Javascript should be one of the most popular cross-platform languages ​​now. I have been playing with some interesting things on the front end, but I found that I didn’t master this language well. I was a little bit careless, so I wanted to take advantage
    2025-06-05
  • js uses stack to implement decimal to octal, divisor and remainder

    js uses stack to implement decimal to octal, divisor and remainder

    Copy the code as follows: function ten2eight(x){ var s=[]; var r=''; while(x>0){ s.push(x%8); x=parseInt(x/8); } while(s.length>0){ r=r+
    2025-06-05
  • NodeJS study notes FS file module

    NodeJS study notes FS file module

    1. The opening analysis file system module is a simple packaged set of standard POSIX file I/O operation methods. The module can be obtained by calling require("fs"). All methods in the file system module are available in asynchronous and synchr
    2025-06-05
  • Compile and install php libevent extension instance under Linux

    Compile and install php libevent extension instance under Linux

    I originally wanted to try PHP to write high-performance network services, and I needed to install the libevent extension, but I didn't expect it to be a bit exhausting to download the libevent extension first: http://pecl.php.net/package/libevent Aft
    2025-06-05
  • ReplaceChild() usage example of DOM node replacement or modification function

    ReplaceChild() usage example of DOM node replacement or modification function

    This article describes the use of replace or modify function replaceChild() for DOM nodes. Share it for your reference. The specific analysis is as follows: The replacement process of DOM nodes: (1) Create a new node; (2) Find the old node; (3) Standing a
    2025-06-05
  • Share 4 functions that generate random numbers implemented by JS

    Share 4 functions that generate random numbers implemented by JS

    The first method copy the code code as follows: /**@desc: Generate a random string *@remark:toString method can receive a cardinality as a parameter, and this cardinality is topped from 2 to 36. If not specified, the default radix is ​​decimal */function
    2025-06-05
  • Summary of methods for determining the kernel and version number of the browser

    Summary of methods for determining the kernel and version number of the browser

    Through jquery, determine the browser's kernel and version number and copy the code code as follows: <script type="text/javascript">$(function () {if ($.browser.msie && ($.browser.version ==
    2025-06-05
  • W3C Tutorial (14): W3C RDF and OWL Activities

    W3C Tutorial (14): W3C RDF and OWL Activities

    RDF and OWL are two important semantic web technologies. RDF and OWL are two important semantic web technologies. Semantic Web (Semantic Web) Semantic Web is a framework for asset management, enterprise integration and sharing and reuse of network data. S
    2025-06-05
  • JavaScript's judgment and processing example analysis of numbers

    JavaScript's judgment and processing example analysis of numbers

    This article describes JavaScript's judgment and processing techniques for numbers. Share it for your reference. The specific analysis is as follows: Javascript polymorphic properties are very pleasant, and there is no need to remember so many strange
    2025-06-05
  • Xhtml is not commonly used but very useful tags

    Xhtml is not commonly used but very useful tags

    xhtml has many not commonly used but very useful tags. Some can achieve twice the result with half the effort, some can improve semantics, and some can improve ease of use. I have summarized some of the principles that are useful and useful, which means t
    2025-06-05