Wechat Public Platform jsapi Development Tutorial (8) Display Hidden Top Right Menu
Source of articles http://www.vxzsk.com/119.html
Wechat official jsapi provides an interface operation interface to control the menu in the upper right corner of Wechat's web page. Let's look at the instructions of Wechat official documents on the interface operation interface.
Hide the top right menu interface
wx.hideOptionMenu();
Displ ...
Posted by dsaba on Wed, 03 Apr 2019 10:36:37 -0700
Bootstrap Notes
Bootstrap is a popular responsive framework that adjusts the size of HTML elements to the size of your screen -- emphasizing the concept of responsive design.
With responsive design, you don't need to design a mobile version of your website. It will look good on any size screen.
Commonly used APIs
Introduce
<link rel="styleshee ...
Posted by spiritssight on Wed, 03 Apr 2019 00:12:31 -0700
Deep Prototype Chain and Implementation of Inheritance in JavaScript Learning Series
JavaScript is an interpretive language. It does not need to be compiled into binary files. It is a dynamic language. Unlike the implementation of inheritance in Java, JavaScript implements inheritance mainly by relying on powerful prototype chain mechanism.
A prototype chain
When accessing an object's attributes, it first looks in the basic ...
Posted by cornix on Tue, 02 Apr 2019 23:57:31 -0700
springboot landing page image validation code simple web project
Written in front
Some time ago, we all said that the environment is not good recently. Many companies are laying off employees. If they change jobs, they don't recommend easy naked words. But what I want to say is that my company has abuses, there are business needs that can't be done, and there are people who can't be recruited.
Recently, I ha ...
Posted by Buyocat on Tue, 02 Apr 2019 15:21:29 -0700
ES6 Learning Notes: Deconstructive Assignment of Variables
Deconstructive Assignment of Variables
Definition: ES6 allows you to extract values from arrays and objects according to a certain pattern and assign variables, which is called Destructuring.
Basic examples:
let [foo, [[bar], baz]] = [1, [[2], 3]];
foo // 1
bar // 2
baz // 3
let [ , , third] = ["foo", "bar", "baz"];
third // "baz"
let [x ...
Posted by Arez on Mon, 01 Apr 2019 23:12:29 -0700
JQuery selector for beginners of jQuery
Today we'll talk about jquery selectors, which are roughly divided into four selectors!!!
1. Basic selectors (label, ID, class, union, intersection, global)
1 (template)
<body>
<div id="o" class="myc">I'm the first one. div</div> <div><span>I am the second div</span></div>
</bod ...
Posted by gsv2com on Mon, 01 Apr 2019 11:21:28 -0700
Json Method for Front and Background Transport Using js
No matter what framework is used, there is a problem of transferring data from controller to Html page or jsp page. The most common way is to transfer Json string. In the past, there was some ambiguity about this knowledge. Now I'll sort it out.
[Jquery Basic Method]
Jquery and internal encapsulated ajax are commonly used to implement val ...
Posted by foolguitardude on Mon, 01 Apr 2019 06:18:30 -0700
Talk about JSON and JSONP, cross-domain requests
When it comes to AJAX, there are two unavoidable questions. The first one is in what format does AJAX exchange data? Second, how can cross-domain requirements be addressed? At present, there are different solutions to these two problems, such as data can be described by custom strings or XML, and cross-domain can be solved by server-side proxy ...
Posted by ercantan on Mon, 01 Apr 2019 05:06:29 -0700
validForm and layer to make form validation prompts
First, introduce jquery,Validform, and layer
<script src="../js/jquery.min.js"></script>
<script src="../layer/layer.js"></script>
<script src="../js/Validform_v5.3.2_min.js"></script>
Form form with code
<form class="demoform">
<ul class="am-u-sm-12 am-u-md-6 am-cf">
<li>Nativ ...
Posted by matt86 on Sun, 31 Mar 2019 03:27:29 -0700
angular routing, ui-router,ocLazyLoad usage
angular for beginners. Please point out the mistakes. Thank you.
1.angular routing, modularization, replacement of html content to replace the display of the page.
2. After routing is established, ui-router is used to change content in two (or more) different places of the page at the same time.
3. If it is not a small project, all t ...
Posted by Kifebear on Sat, 30 Mar 2019 18:45:27 -0700