WebOffice document online editing

brief introduction The WebOffice control introduced in this paper is a product developed by Guangzhou waltai Technology Co., Ltd. to process Office files in web pages. WebOffice controls support almost all the requirements for online document functions, such as online new creation, editing, saving, multi person collaboration, Office files, etc ...

Posted by jonathen on Thu, 28 Oct 2021 04:16:24 -0700

[note]vue from introduction to entering the grave basic grammar of the second book

vuejs official website Template grammar 1.1 interpolation 1.1.2 text Double braces {}} interpret the data as plain text rather than HTML code. Common usage <span>Message: {{ msg }}</span> v-once By using the v-once instruction, you can also perform one-time interpolation. When the data changes, the content at the interp ...

Posted by pas07920 on Wed, 27 Oct 2021 09:50:50 -0700

21-10-22--Vue learning record day 4

21-10-22--Vue learning record day 4 1, Filter Essentially, a filter is a special function The data on the template can be reprocessed and processed before data mounting The filter acts after the variable, uses | as the coincidence function, and processes the variable before | as the value of the function after | The filter function must ha ...

Posted by chomps on Wed, 27 Oct 2021 04:44:15 -0700

Use event bubbling and event delegation to optimize code - add event problems to child elements

Pure js calendar component learning notes The following records the problems encountered in the process of completing the calendar component in pure js Problems encountered 1. Drop down menu implementation The display of the drop-down menu and the style that will appear after clicking the option box are written in advance For example, t ...

Posted by cretam on Wed, 27 Oct 2021 01:09:36 -0700

[HTML zero basics to introduction] detailed tutorial Chapter 1

Part I: introduction to HTML framework 1. What & how to learn & what tools to use (1) What is HTML?(2) How to learn HTML?(3) Tools used: 2. Basic structure of HTML3. Specification of HTML file4. Basic template of HTML Part II: labels 1. Use style and attribute of label (1) Usage style of label:(2) Label properties:(3) Bl ...

Posted by ksteuber on Tue, 26 Oct 2021 22:08:12 -0700

Considerations for integrating Vue in Meteor

intro Scenario 1: If you find an old meteor project with version 1.8.1, it was created before May 2019 In October 2021, you want to create a 1.8.1 meteor project. You can create the project by specifying the version number, as follows: meteor create vue-meteor-app --release 1.8.1 then: But when you create a project and want to run it by ty ...

Posted by fazbob on Tue, 26 Oct 2021 21:49:06 -0700

Javaweb8 = = realize the login and registration function of front and back-end separation

                  The back end is as written in the previous two articles.         The front end picked up a front-end page from the Internet and used the JavaScript library jQuery to simplify the operation of DOM and BOM. I want to use ajax technology to initiate HTTP requests and ...

Posted by geecu on Tue, 26 Oct 2021 19:42:38 -0700

CSS page beautification and layout control

CSS page beautification and layout control concept Cascading Style Sheets cascading style sheets Cascade: multiple styles can act on the same html element and take effect at the same time benefit PowerfulSeparating content presentation from style control Reduce coupling and decouplingMake division of labor and cooperation easierImprove ...

Posted by allaboutthekick on Tue, 26 Oct 2021 07:20:48 -0700

Detailed explanation of the usage of watch monitoring in vue2 and vue3 (all)

First write a vue page <template> <h1>Listen for a property</h1> <p>Summation:{{ sum }}</p> <button @click="sum++">Point I add 1</button><br /> <h2>Listen for multiple properties</h2> <p>{{ tipsmessage }}</p> <button @click="tipsmessage += 1">Poin ...

Posted by sneamia on Tue, 26 Oct 2021 00:54:17 -0700

Web front end season 1 (HTML): 7: session 17: 116 - hyperlinks + session 18: 117 - properties of hyperlinks + session 19: 118 - other contents of hyperlinks

catalogue 1, Purpose 1. Want to: Learn front-end knowledge 2. Think: take notes. Next time, you don't need to watch the video. You can quickly recall by looking at the notes directly. 2, Reference 1.SIKI College: I refer to this video for practice 1.w3school official website: used as a dictionary 1. Rookie tutorial: use as a dictionary ...

Posted by 0riole on Sun, 24 Oct 2021 19:41:40 -0700