Understanding an open source, easy to use front-end framework - easyUI
Getting started with easyUI
Foreword: About Front End Framework
Text: Use of easyUI
Overseas: How to develop your own front-end framework
Foreword: About Front End Framework
The essence of the front-end framework: Personal understanding is essentially a bunch of encapsulated css and js files tha ...
Posted by pazzy on Sat, 20 Jun 2020 18:06:43 +0200
Check if the user is using IE
This article is translated from: Check if user is using IE
I am calling a function like the one below by clicking on div s with a certain class.
Is there a way I can check when starting the function if a user is using Internet Explorer and abort / cancel it if they are using other browsers so that ...
Posted by munky334 on Sun, 14 Jun 2020 04:15:45 +0200
Ajax data requests for applets
1.Interface
Mock The server is turned on, as long as all static resource files such as pictures are placed in thepublicUnder the folder, you can directly access the Mock The server localhost:3000Find the corresponding path
http://localhost:3000/images/0/a.jpg(api/public/images/0/a.jpg)
http://localhost ...
Posted by cali_dotcom on Sat, 13 Jun 2020 10:27:36 +0200
Java implementation of computer composition principle
1 purpose of course design
This course is designed to deepen students' basic knowledge of the course of computer composition principle, further understand some algorithms of computer composition principle, and carry out specific implementation, so as to improve the comprehensive application ability of a ...
Posted by Easter Bunny on Mon, 08 Jun 2020 05:19:43 +0200
[ asp.net Core series] 5 layout pages and static resources
0. Preface
In the previous four articles, we introduced the relationship between routing, controller and view in detail. In other words, how does the system parse the user's HTTP request into the controller, and then process the data in the controller, and return it to the view, and display it in the view. In this article, I will introduce the ...
Posted by noodle on Fri, 05 Jun 2020 08:41:31 +0200
Using the object-oriented method to write the component of carousel chart, which can be reused
First, set the html file of the carousel chart. The basic structure is as follows. At the same time, some jQuery methods are used in it. Therefore, jQuery files need to be introduced. Only div with id of banner is required, and other structures can be added as needed. If you want to set the left and right buttons, you need to add the class &quo ...
Posted by direland on Wed, 03 Jun 2020 17:18:22 +0200
Web development, only JS can complete the development of Express query API interface
Some netizens left a message saying that they want to call the express bird API interface to realize Express query, but they don't understand the back-end development, JAVA, PHP, C and python. They asked me if I could realize express interface query, and I said what would you do, he said, I only know a little JS,
I replied that it's enough. No ...
Posted by itbegary on Tue, 19 May 2020 16:19:13 +0200
Configuration options of radio swiper -- tips on the front end
This paper mainly introduces the swiper configuration options, including unlimited scrolling, lazy loading, monitoring the current position, page up and down, transition animation gradient, delay loading pictures, automatic rotation, etc;
Case diagram:
Front end code:
Tips: because JQ is the rigid demand of the front end, the demons ...
Posted by gilgimech on Fri, 08 May 2020 18:10:59 +0200
Use JQuery to complete the check box selection
Js related technology
checked property
How to get all check boxes: document.getElementsByName
requirement analysis
When we deal with forms, in some cases, we need to deal with forms in batches
technical analysis
First method: selector [property name = 'property value']
$("input[type='checkbox']:gt(0)").prop("checked",this.check ...
Posted by anthonydamasco on Wed, 06 May 2020 18:02:16 +0200
jQuery | gets and sets the style css
jQuery operation CSS
jQuery has several methods for CSS operations. We will learn the following:
addClass() - add one or more classes to the selected element
removeClass() - removes one or more classes from the selected element
toggleClass() - add / delete class switch for the selected element
css() - set or return style properties
Instance sty ...
Posted by mschrank on Sat, 02 May 2020 18:31:15 +0200