current location:Home > Technical Articles > Web Front-end > JS Tutorial
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- What's the difference between function.call and function.apply?
- Today I read a great blog post by Mark Needham titled JavaScript: Confusing ‘call’ and ‘apply’. A while back I wrote an article for our Tech Times newsletter about the JavaScript arguments object. It was called arguments: A JavaScript Oddity. Because
- JS Tutorial 964 2025-03-10 00:48:08
-
- 20 Flash-like jQuery Plugins
- 20 cool jQuery plug-ins to help you bid farewell to Flash animations! This article will introduce an impressive array of Flash-style JavaScript animation resources, tutorials, and plugins. With the rise of jQuery, MooTools, and many other frameworks that enhance animation, we can now easily create stunning JavaScript animations, making it difficult for visitors to tell the difference from Flash animations. Hope this article will bring you new inspiration! Key points: This article lists 20 jQuery plugins for creating impressive Flash-style animations and provides a list of resources, tutorials, and plugins that developers can explore and use. These plugins and tutorials cover a wide range of
- JS Tutorial 133 2025-03-10 00:47:07
-
- 10 Amazing jQuery Widgets
- Enhance Your Website with These 10 Cool jQuery Widgets This article showcases ten easy-to-use yet powerful jQuery widgets to boost your website's interactivity and functionality. Let's dive in! jQuery Delicious Plugin: Display information from del
- JS Tutorial 467 2025-03-10 00:46:08
-
- The Two Ways of Sizing Absolute Elements in CSS
- Anyone who has used CSS for a while will know about the merits of absolute and relative positioning. To recap: position: relative allows an element to be shifted from its original position either horizontally (using left or right) or vertically (usi
- JS Tutorial 295 2025-03-10 00:45:08
-
- 6 jQuery Cursor Functions
- Here are some powerful jQuery code snippets for manipulating the mouse cursor! They can be used to set and get text cursor position and selection range in the input and text area fields. Enjoy it! // jQuery get cursor position function call example $("input[name='username']").getCursorPosition(); jQuery.fn.getCursorPosition = function(){ if(this.length == 0) return -1; return $(this).g
- JS Tutorial 753 2025-03-10 00:44:10
-
- jQuery Read-Only Input Field
- Easily control read-only properties of input fields with jQuery This article describes how to use simple jQuery code snippets to control the read-only properties of the input field so that it is not editable or restored to the editable state. Set read-only properties: The following code uses jQuery's attr() method to set the input field to read-only: $('input').attr('readonly', true); Cancel the read-only attribute: Use the removeAttr() method to cancel the read-only attribute of the input field: $('input').removeAttr('readonly'); Remember to put the jQuery code in $(document).re
- JS Tutorial 666 2025-03-10 00:43:08
-
- jQuery: Easy JavaScript for Designers
- Key Takeaways jQuery is a JavaScript library that simplifies the process of using JavaScript for web design, offering a range of pre-built functions and tools to improve functionality and user experience. jQuery allows designers to manipulate HT
- JS Tutorial 200 2025-03-10 00:39:11
-
- 19 Best JavaScript Admin Templates for React, Angular, and Vue.js
- Streamline Your App Development with Top JavaScript Admin Panel Templates Building an app? Save time and effort with a pre-built JavaScript admin panel template. This article showcases powerful React, Angular, and Vue.js templates to create stunnin
- JS Tutorial 863 2025-03-10 00:37:09
-
- Ajax Patterns
- Design patterns offer reusable solutions to common programming problems. The Ajax Patterns Wiki attempts to catalog these solutions specifically for Ajax applications. While the wiki is extensive, documentation for some patterns is incomplete, ofte
- JS Tutorial 918 2025-03-10 00:36:11
-
- JavaScript Doom
- The classic game Doom has been ported to the browser through JavaScript, fully demonstrating the capabilities of this most commonly used programming language in the world. Main gains: The classic game Doom has been ported to a browser using JavaScript, demonstrating the capabilities of the most commonly used programming languages in the world. Despite some limitations, such as slow running in Chrome and not running in IE, Doom in JavaScript runs well on Firefox 4 and Opera, reaching 20-30 frames per second on mid-range PCs. The game uses Emscripten and Clang to convert C generation
- JS Tutorial 476 2025-03-10 00:33:10
-
- How to Write Faster JavaScript Condition Expressions
- There’s an interesting optimization feature in JavaScript which doesn’t necessarily apply in other languages. Consider the following code sample: var x = 10; var y = true; if (x*x > 1000 || y) alert("true!"); As you’d expect, “true”
- JS Tutorial 914 2025-03-10 00:32:12
-
- AJAX: Usable Interactivity with Remote Scripting
- If your bookmarks contain even one Web development blog, you’ll undoubtedly know that remote scripting is being touted as the new “future of the Web”. Although I get the feeling that a few people are perhaps a little over-excited about it, the rece
- JS Tutorial 705 2025-03-10 00:30:09
-
- Hacking JavaScript for Fun and Profit: Part I
- JavaScript has become a large part of the web development and design experience in the past few years. It allows us to spruce up dull, static pages, avoid page refreshes, and accomplish some amazing feats of interface engineering – things that would
- JS Tutorial 364 2025-03-10 00:29:10
-
- 10 jQuery Inline Editor Plugins
- Ten powerful jQuery inline editors that let you dynamically manage web content like you use CMS! Looking for the right in-place editor? We found these very interesting scripts. Editing in-place or inline is very useful in editing page text without refreshing it, enhancing the user interface. Please check out the following tutorial. WYMeditor: Web-based XHTML editor A web-based WYSIWYM (what see is what you get) XHTML editor (non-WYSIWYG). Its main concept is to ignore the details of the visual layout of the document, focus on its structure and meaning, while trying to provide the user with the greatest convenience (at least as with the WYSIWYG editor). Sourc
- JS Tutorial 402 2025-03-10 00:27:11
-
- Why use JSON over XML?
- Choosing between JSON and XML for data transmission can be tricky. This article outlines the key reasons why JSON often emerges as the preferred choice, and also considers scenarios where XML might be more suitable. Understanding JSON and XML JSON
- JS Tutorial 683 2025-03-10 00:24:09