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
  • Data URI and MHTML complete solution for all browsers

    Data URI and MHTML complete solution for all browsers

    Data URIData URI is a solution defined by RFC 2397 to embed small files directly into documents. Through the following syntax, you can turn small files into a specified encoding and directly embed them into the page: data:[<MIME-type> ][;base64],<data> MI
    2025-06-01
  • IE6 web page production reference: IE6 default style

    IE6 web page production reference: IE6 default style

    This is actually not an official document of ie. It seems that it is the default style of ie6 created by others through practice. This is of great reference value for our taming of ie6. You will understand the reasons for the bugs that I have. Unfortunate
    2025-06-01
  • Technology about writing performance-efficient javascript events

    Technology about writing performance-efficient javascript events

    How to make efficient web front-end programs is a problem that I will unconsciously consider every time I do front-end development. A few years ago, the awesome front-end engineers in Yahoo published a book about improving the performance of the web front
    2025-06-01
  • A brief analysis of apply() method in Javascript

    A brief analysis of apply() method in Javascript

    We have talked about the Javascript Call method before, and this time we will talk about the apply method similar to the Call method. The difference between apply vs call is: is the parameter passed or the parameter array. This is the usage of call. The c
    2025-06-01
  • Commonly used JS methods in projects

    Commonly used JS methods in projects

    Verify whether the code is copied in the image format as follows: function IsImgType(src) {var rFilter = /^(:image//bmp|image//cis/-cod|image//gif|image//ief|image//jpe
    2025-06-01
  • Give an example to explain the use of JSON format to submit a form in HTML5

    Give an example to explain the use of JSON format to submit a form in HTML5

    Submitting form data in JSON encoding format is another major contribution of HTML5 to the development and evolution of WEB. In the past, our HTML form data was transmitted through key-value. This form of transmission lacks management of data organization
    2025-06-01
  • Detailed explanation of AngularJS syntax (continued)

    Detailed explanation of AngularJS syntax (continued)

    In src and href attributes Angularjs, src should be written as ng-src, and href should be written as ng-href For example: Copy the code code as follows:<img ng-src="/images/cats/{{favoriteCat}}">
    2025-06-01
  • HTML Markup Language – Quotations

    HTML Markup Language – Quotations

    Click here to return to the Wulin.com HTML tutorial column. Above: Markup Language - Original Text Source Chapter 4 Quotations are the only quotations tha are never misquoted (only erroneous quotes are forever
    2025-06-01
  • JS production of simple calendar complete example

    JS production of simple calendar complete example

    This article examples illustrate how to make a simple calendar by JS. Share it for your reference. The details are as follows: Today I learned how to use js to realize the production of the calendar, and reviewed the usage of this. It is a bit different f
    2025-06-01
  • Button does not specify type as submit Click the button to jump to the specified URL

    Button does not specify type as submit Click the button to jump to the specified URL

    Today, due to project requirements, js needs to control the submission of form and verify and process data before submit. The code for html is as follows: Copy the code
    2025-06-01
  • A deep understanding of JavaScript series (44): Detailed explanation of bridge mode of design pattern

    A deep understanding of JavaScript series (44): Detailed explanation of bridge mode of design pattern

    Introduction Bridge mode separates abstract parts from its implementation parts so that they can all be varied independently. The text bridge mode is most commonly used in event monitoring. Let’s first look at a piece of code: the copy code is as follows:
    2025-06-01
  • js operation scrollbar event instance

    js operation scrollbar event instance

    This article describes the method of using scrollbar events by js. Share it for your reference. The specific analysis is as follows: I have been puzzled before, how to monitor scrollbar events, but today I finally understand a little. The following code i
    2025-06-01
  • Deeply understand JavaScript series (21): Detailed explanation of the five principles of SOLID interface isolation ISP

    Deeply understand JavaScript series (21): Detailed explanation of the five principles of SOLID interface isolation ISP

    Preface In this chapter, we are going to explain the fourth chapter of the implementation of the five principles of SOLID JavaScript language, the Interface Segregation Principle. Original English text: http://freshbrewedcode.co
    2025-06-01
  • JavaScript implements WeChat sharing

    JavaScript implements WeChat sharing

    The code is very simple, I won't talk much nonsense here, just present the source code: copy the code as follows: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = requ
    2025-06-01
  • Introduction to value type conversion in JavaScript

    Introduction to value type conversion in JavaScript

    When performing +, -, *, /, ==, !=, etc. in JavaScript, if the value types on both sides of the operator are inconsistent with the expected type, JavaScript will convert the values ​​on both sides of the operator into the expected type before performing o
    2025-06-01