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
  • Comprehensive analysis of js selector

    Comprehensive analysis of js selector

    The native JS selectors include getElementById, getElementsByName, getElementsByTagName and getElementsByClassName. Next, I will introduce the usage of these four selectors one by one. 1.getElement
    2025-07-06
  • Simple calendar implementation of Date object application in javascript

    Simple calendar implementation of Date object application in javascript

    The above is a common application of Date objects in JavaScript and has a wide range of uses. This article will explain in detail the implementation ideas of simple calendars. The HTML description uses the two inputs of type=number as input controls for y
    2025-07-06
  • SpringMVC combined with AjaxForm upload files

    SpringMVC combined with AjaxForm upload files

    Recently, I need to upload file files in the project. I have always submitted it by form before. I tried AjaxForm and it feels that it is quite useful. I wrote an essay mark for future use. Preparation: Download jquery-form.js related jar: commons-fileupl
    2025-07-06
  • Detailed explanation of JavaScript scope example

    Detailed explanation of JavaScript scope example

    Scope is one of the most important concepts of JavaScript. If you want to learn JavaScript well, you need to understand the working principles of JavaScript scope and scope chain. Today's article introduces a detailed explanation of JavaScript scope e
    2025-07-06
  • AngularJS simplified route

    AngularJS simplified route

    AngularJS routing allows us to access different content through different URLs. AngularJS can realize single page web application (SPA) for multi-views. Usually our URL is http://runoo
    2025-07-06
  • Simple example of JS implementing click event statistics

    Simple example of JS implementing click event statistics

    JS implements the statistical function of website click events. Click event reporting, which is divided into immediate reporting and delayed reporting, and delayed reporting is stored through cookies. 1. Configuration parameters, mainly used to define som
    2025-07-06
  • Javascript click anywhere else to hide and close DIV instance

    Javascript click anywhere else to hide and close DIV instance

    The code is as follows, and the function of hiding a div layer when clicking input and hiding a div layer.<!DOCTYPE html><html><head><meta charset="utf-8" /><title> Click other places to close
    2025-07-06
  • Solution to the garbled Chinese parameters in JS transmission value

    Solution to the garbled Chinese parameters in JS transmission value

    This article describes the solution to the garbled Chinese parameters in JS pass values. Share it for your reference, the details are as follows: function PopupFK(cNum,type){ var url = "contract!Paying.action"; url = url +
    2025-07-06
  • Learn Angularjs paging commands

    Learn Angularjs paging commands

    In many pages in the project, pagination is used, and each page has many duplicate pagination codes. So I wrote a simple pagination instruction to simplify the page code and be easy to maintain. I wrote it in the blog as a backup for easy access in the fu
    2025-07-06
  • A brief analysis of the plus sign and exclamation mark in front of JavaScript functions

    A brief analysis of the plus sign and exclamation mark in front of JavaScript functions

    +function(){}(); The plus sign here can also be replaced with other unary operators such as !, ~, and its effect is equivalent to: (function() { console.log("Foo!"); })(); // or (function() { console.log
    2025-07-06
  • AJAX cache mechanism on the browser side

    AJAX cache mechanism on the browser side

    AJAX's cache is maintained by the browser. For a certain URL sent to the server, ajax only interacts with the server during the first request. In subsequent requests, ajax no longer submits a request to the server, but extracts data directly from the
    2025-07-06
  • A brief discussion on the method and prototype of js constructor

    A brief discussion on the method and prototype of js constructor

    The case where the method is written in the constructor is referred to as the method within the function, and the case where the method is written on the prototype attribute is referred to as the method on the prototype. Methods within a function: Using m
    2025-07-06
  • Bootstrap Typeahead component of BootStrap Learning Series realizes Baidu pull-down effect (continued)

    Bootstrap Typeahead component of BootStrap Learning Series realizes Baidu pull-down effect (continued)

    Next, in the previous article, I will introduce to you the Bootstrap learning series, using the Bootstrap Typeahead component to achieve Baidu pull-down effect, Bootstrap, from Twitter, is currently the most popular front-end framework. Bootstrap is based
    2025-07-06
  • Simple implementation of Node.js DES encryption

    Simple implementation of Node.js DES encryption

    Common encryption algorithms are basically divided into these categories: 1: linear hashing algorithm, 2: symmetric encryption algorithm, 3. Asymmetric encryption algorithm (record) linear hashing algorithm (signature algorithm): MD5, SHA1, HMAC, such as
    2025-07-06
  • 5 Javascript methods to filter and delete all spaces before and after

    5 Javascript methods to filter and delete all spaces before and after

    The first type: loop check replacement // for the user to call function trim(s){ return trimRight(trimLeft(s)); } // Remove the blank function trimLeft(s){ if(s == null)
    2025-07-06