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
  • JavaScript control input only allows various specified contents to be input

    JavaScript control input only allows various specified contents to be input

    1. Only numbers are allowed<input name="username" type="text"onkeyup="value=this.value.replace(//D+/g,'')"> 2. Only English letters, numbers and underscores are allowed (the following two methods are implemented)
    2025-04-13
  • HTML5 MAKER: Online production banner generation tool

    HTML5 MAKER: Online production banner generation tool

    Article introduction of Wulin.com (www.vevb.com): Here we introduce a tool that can produce HTML5 animation banner generation online, with multiple commonly used animation effects built-in, such as FLASH gradient, sliding, and blur effects, which are very
    2025-04-13
  • Using mongoskin to operate mongoDB instance in Node.js

    Using mongoskin to operate mongoDB instance in Node.js

    1. Nonsense I came into contact with mongodb in January 2013 to develop tourism tag services, Weibo tag retrieval system, map service, web APP service... The scenarios using MongoDB are transferred from the .NET and JAVA environment to the node.js platfor
    2025-04-13
  • Web page production tutorial: Summary of input box skills

    Web page production tutorial: Summary of input box skills

    Wulin.com (www.vevb.com) article introduction: various styles of input input boxes. The input frame background is transparent:<input style=background:transparent;border:1px solid #ffffff> Mouse swipes through the input box, input box background color
    2025-04-13
  • HTML elementary tutorial table

    HTML elementary tutorial table

    Walking through the World Wide Web world, how many HTML tables are used to layout pages and have been abused for a while. We will learn how to layout pages without tables in advanced CSS tutorials. The correct use of tables should be to display table form
    2025-04-13
  • Characters in web design: HTML special characters summary

    Characters in web design: HTML special characters summary

    Article introduction of Wulin.com (www.vevb.com): A complete collection of HTML special characters. We do not use special characters in HTML often, but sometimes we need to use these characters on the page, and sometimes we even need to use these characte
    2025-04-13
  • The js code that automatically executes a method after the page is loaded

    The js code that automatically executes a method after the page is loaded

    1. Use onload in body:<body onload="myfunction()"> 2. Use window.onload in the script: <script type="text/javascript">function myfun(){alert("
    2025-04-13
  • JavaScript to get the next node method of dom

    JavaScript to get the next node method of dom

    Use javascript to write a click on the addition and subtraction button on the page to achieve the accumulation of numbers. The simple html is probably the case. Just understand it, don't care about these details<input type="button" value="+" onclick="
    2025-04-13
  • JavaScript window.location object

    JavaScript window.location object

    I often use window.location, and it can't remember its structure. It can be easily sorted out and facilitate future query. Sample URL: http://bacom:88/index.phpname=kang&when=2011#first attribute meaning
    2025-04-13
  • JavaScript time functions

    JavaScript time functions

    The following is a summary js date function for your reference 1. Obtain the current time copy code as follows: var date=new Date(); 2. The data that is known to convert the year, month, and day into date type: the copy code is as follows: var applyDate =
    2025-04-13
  • Summary of js reading cookie method

    Summary of js reading cookie method

    This article summarizes the js reading cookie method. Share it for your reference. The specific implementation method is as follows: There are many methods for reading cookies in js. Our example function below mainly uses split function to split, and obta
    2025-04-13
  • Let angularjs support browser automatic form filling

    Let angularjs support browser automatic form filling

    Recently, many front-end students have complained that they cannot record their account even if they log in to the login form. This is still a common problem for single-page applications and web pages that use more ajax. UserApp is a WebApp built using an
    2025-04-13
  • $(document).ready(function() {}) does not execute the initialization script

    $(document).ready(function() {}) does not execute the initialization script

    Today I found that a page never executes the initialization script, the code is as follows: <script type="text/javascript" src="Script/jquery-1.11.1.min.js" /><script type="text/javascript
    2025-04-13
  • Solution to JS processing the time stamp output of php is not matched

    Solution to JS processing the time stamp output of php is not matched

    I said why do you always fail to match the timestamps passed into JS by PHP? It turns out that the timestamp of JS is 13-bit and contains 3-bit milliseconds, while PHP only has 10-bits that do not contain milliseconds. var nowtime = (new Date).getTime();/
    2025-04-13
  • Solutions to the javascript trim function not available in IE

    Solutions to the javascript trim function not available in IE

    There is no problem using the trim function of javascript under firefox<script language="javascript"> var test1 = " aa "; test1 = test1.toString(); test1 =
    2025-04-12