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
  • Calls of various java methods in DWR

    Calls of various java methods in DWR

    DWR is a framework, which is simply able to call java methods directly in javascript without having to write a lot of javascript code. Its implementation is based on ajax and can achieve refresh-free effect. There are many examples of DWR on the Internet,
    2025-07-15
  • Detailed explanation of the usage of splice method in JavaScript

    Detailed explanation of the usage of splice method in JavaScript

    Splice in JavaScript is mainly used to operate on arrays in js, including deletion, addition, replacement, etc. Note: This method changes the original array! . 1. Delete - used to delete elements, two parameters, the first parameter (the position of the f
    2025-07-15
  • js dynamically add and remove events to elements

    js dynamically add and remove events to elements

    Recently, in the project, you need to dynamically give element binding events to js. You haven't used these before. By the way, you can learn about it. So you Googled the events and wrote the following two events, one is to add events, and the other i
    2025-07-15
  • Introduction to the use of BootStrap model pop-up box

    Introduction to the use of BootStrap model pop-up box

    Previously, we explained the use of bootstrap tab. Today we will learn about the use of model pop-up windows in bootstrap. Effect: Code:
    2025-07-15
  • Bootstrap zero-basic introduction tutorial (II)

    Bootstrap zero-basic introduction tutorial (II)

    What is Bootstrap? Bootstrap is a front-end framework for the rapid development of web applications and websites. Bootstrap is based on HTML, CSS, and JAVASCRIPT. History Bootstrap is by Twitter's Mark Ott
    2025-07-15
  • Advantages and disadvantages of these three MVVM frameworks: vue, angular, and avalon

    Advantages and disadvantages of these three MVVM frameworks: vue, angular, and avalon

    The main content of this article is summarized with reference to the official documentation description: Vue.jsVue.js @ A library written by Mr. You Yuxi for creating web interactive interfaces is a streamlined MVVM. From a technical point of view, Vue.js
    2025-07-15
  • A summary of essential JS debugging skills

    A summary of essential JS debugging skills

    Preface: Debugging code is indispensable for any programmer. Whether you are a master or a novices, debugging programs is an indispensable task. Generally speaking, debugging programs are performed after writing code or when modifying bugs during testing.
    2025-07-15
  • JS method to implement queues and stacks

    JS method to implement queues and stacks

    This article describes the method of implementing queues and stacks in JS. Share it for your reference, as follows: In object-oriented programming, methods for implementing queues and stacks are generally provided. For JS, we can implement related operati
    2025-07-15
  • Common codes for obtaining client information such as browser type and operating system version in Javascript

    Common codes for obtaining client information such as browser type and operating system version in Javascript

    /*** @author hechen*/var gs = { /**Get screen width**/ ScreenWidth: function () { return window.screen.width; }, /***Get screen height
    2025-07-15
  • Dailog based on BootStarp

    Dailog based on BootStarp

    Introduction to BootStrip Bootstrap, from Twitter, is currently a very popular front-end framework. Bootstrap is based on HTML, CSS, and JAVASCRIPT. It is simple and flexible, making web development faster. It was created by Twitter's designer Mark
    2025-07-15
  • An in-depth analysis of data sharing and data delivery in JavaScript

    An in-depth analysis of data sharing and data delivery in JavaScript

    Data sharing and data transmission complement each other, let’s discuss this issue together. The first thing to say is that sharing and passing are both scoped. Scope is the area where it works. Data can be shared in the same scope. If you exceed this sco
    2025-07-15
  • Javascript insertAfter() definition and usage example

    Javascript insertAfter() definition and usage example

    This article describes the definition and usage of javascript insertAfter(). I will share it with you for your reference, as follows: HTML part:<div id="b"> bbbbbbbbbbbbbbbb</div><div> ddddddddd</div> JavaScript part: win
    2025-07-15
  • Easy way to stop bubbling and block browser default behavior

    Easy way to stop bubbling and block browser default behavior

    General method to stop bubble: function stopBubble(e) { //If an event object is provided, it is a non-IE browser if (e && e.stopPropagation ) //Use W3C's stopPropagation() method e.st
    2025-07-15
  • Experience summary of BootStrap Metronic Development Framework [7] Data import, export and accessory viewing and processing

    Experience summary of BootStrap Metronic Development Framework [7] Data import, export and accessory viewing and processing

    In many system modules, we may need to perform certain data exchange processing, that is, data import or export operations. Such batch processing can give system users a better operating experience and improve the efficiency of users entering data. Based
    2025-07-14
  • Nodejs learning item【Beginner】

    Nodejs learning item【Beginner】

    1. Installation First, go to http://nodejs.org to download and install. The version I'm down is 0.8.14. The installation is very simple, the next step is next. Then configure the installation directory in the path, and msi will install npm (Node Packa
    2025-07-14