New jQuery and drag effect
Previously, zTree is a multifunctional tree plug-in that relies on jQuery.Excellent performance, flexible configuration, and a combination of features are the best benefits of zTree.Specially suited for project development, especially tree menus, tree data.
Official ztree documentation: http://www.treejs.cn/v3/api.php
What yo ...
Posted by Xu Wei Jie on Fri, 10 May 2019 05:42:40 -0700
Programmer's daily operation — modifying data
Development Tools and Key Technologies: Visual Studio ASP.NET MVC
Author: Liu Jianhong
Writing time: Saturday, 13 April 2019
Programmer's Daily Operations - Modifying Data
The operation of data modification is something programmers can encounter every day in managing data. Modifications and additions are very similar, their pu ...
Posted by scotch33 on Thu, 09 May 2019 22:54:39 -0700
File upload for ajax
Form Upload File
Traditional file uploads are via form forms. As the saying goes, solutions that don't focus on actual problems are fake, so I'll simulate a user registration function.
Look at the following code:
[HttpPost]
public ActionResult Upload(string username, string password, string realName, string address, HttpPosted ...
Posted by pvraja on Thu, 09 May 2019 20:08:38 -0700
jQuery accordion special effects
<div class="container">
<div class="container_box">
<div class="box_2">
<ul>
<li class="li1" id="li1">
<div class="fold" style="display:none;">
<span class="img"></span>
</di ...
Posted by gumby51 on Thu, 09 May 2019 09:44:38 -0700
Summary of web uploader uploading large files
Due to business needs, large files need to be uploaded, and existing versions can not handle IE version. After investigation, Baidu's webuploader supports IE browser and calculates MD5 value, which can realize the function of seconds transmission.
Large file upload is mainly divided into three parts, pre-upload, block upload, and combined uploa ...
Posted by rj2kix on Thu, 09 May 2019 01:36:40 -0700
Web Player Development Code Refining
4. Refining
Our player is basically implemented, but the code reuse is not high, so we want to encapsulate it as a plug-in.
1. The basic running code of the plug-in is as follows:
;(function(undefined){
'use strict';
... ...
})()
The above code is the basic plug-in code. The meaning of this code is detailed below.
The pre ...
Posted by dickd on Tue, 07 May 2019 02:20:39 -0700
JQuery -- Phase 2 (jQuery property operations)
Individual Learning Notes
1.JQuery Content Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JQuery Content selector</title>
<script src="jquery-1.12.4.js"></script>
<script>
$(function () {
//:conta ...
Posted by madhavanrakesh on Mon, 06 May 2019 12:00:38 -0700
The Birth of underscore: Basic Structure Construction
1. introduction
Ununderscore is a mature and reliable third-party open source library. Just as jQuery unifies the differences of DOM operations among different browsers, it allows us to operate DOM simply. Ununderscore provides a set of perfect functional programming interfaces, which makes it easier for us to implement functional programming ...
Posted by salmanshafiq on Sat, 27 Apr 2019 09:30:36 -0700
Java Core Technology Carding-Collection
I. Preface
In daily development, we often encounter the need to know the number of objects at runtime. This situation can not use arrays, because arrays are a fixed number, we will use collections at this time, because collections can store an indefinite number of objects.
Collection classes are particularly useful tool classes. They can stor ...
Posted by Matt Phelps on Thu, 25 Apr 2019 14:03:35 -0700
element+iconfont Implementing iconPicker Component
When doing background management projects, there is a function that the sidebar can be configured. Configurable items are: name, routing, icon, permission. The name, routing, and authority are in God's vue-element-admin The problem is that the icon selection configuration (after this, it is not necessary, because the project is used by the int ...
Posted by rd321 on Tue, 23 Apr 2019 10:39:34 -0700