随笔分类 -  Ajax&JavaScript

上一页 1 2 3 4 5 6 ··· 9 下一页
ajax,javascript,vbscript,jQuery,ExtJS
摘要:# encoding: utf-8 # 版权所有 ${YEAR} ©涂聚文有限公司 # 许可信息查看: # 描述: # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 python 3.11 # OS : windows 10 # Da 阅读全文
posted @ 2024-08-24 13:22 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0)
摘要:/* * _oo0oo_ * o8888888o * 88" . "88 * (| -_- |) * 0\ = /0 * ___/` '\___ * .' \\| |// '. * / \\||| : |||// \ * / _||||| -:- |||||- \ * | | \\\ - /// | 阅读全文
posted @ 2024-08-22 20:52 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要:mysql: select * from tutorials; # CREATE TABLE IF NOT EXISTS `tutorials` (`id` INTEGER NOT NULL auto_increment , `title` VARCHAR(255), `description` V 阅读全文
posted @ 2024-08-09 08:50 ®Geovin Du Dream Park™ 阅读(24) 评论(0) 推荐(0)
摘要:mysql script: drop table `vuedustu`; CREATE TABLE `vuedustu` ( `stuId` int(11) NOT NULL AUTO_INCREMENT comment'学生编号', `stuname` varchar(255) DEFAULT N 阅读全文
posted @ 2024-08-07 20:17 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0)
摘要:mysql: select * from tutorials; # CREATE TABLE IF NOT EXISTS `tutorials` (`id` INTEGER NOT NULL auto_increment , `title` VARCHARuserinfos(255), `descr 阅读全文
posted @ 2024-08-07 18:04 ®Geovin Du Dream Park™ 阅读(36) 评论(0) 推荐(0)
摘要:先安装路由包: npm install vue-router route/index.js import { createRouter, createWebHistory ,createWebHashHistory} from 'vue-router' import HomeView from '. 阅读全文
posted @ 2024-08-01 18:32 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0)
摘要:https://www.elby.ch/en/products/vcd.html Virtual CloneDrive --在windows PowerShell 管理身份运行 Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Loca 阅读全文
posted @ 2024-07-27 23:46 ®Geovin Du Dream Park™ 阅读(152) 评论(0) 推荐(0)
摘要:// geovindu /* (c) 2011-2015, Vladimir Agafonkin SunCalc is a JavaScript library for calculating sun/moon position and light phases. https://github.co 阅读全文
posted @ 2024-05-10 16:31 ®Geovin Du Dream Park™ 阅读(227) 评论(0) 推荐(0)
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="text/html; 阅读全文
posted @ 2024-04-29 09:15 ®Geovin Du Dream Park™ 阅读(43) 评论(0) 推荐(0)
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <meta name="viewport" content="width=devic 阅读全文
posted @ 2024-04-07 16:15 ®Geovin Du Dream Park™ 阅读(195) 评论(0) 推荐(0)
摘要:/** * file Sort.js * ide:vscode JavaScript Sorting Algorithms * 插件:IntelliSense,JSDoc,CodeLens,Debugger for Chrome, 静态代码检查:ESLint,JSHint,Flow Langugae 阅读全文
posted @ 2023-10-23 19:43 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0)
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sca 阅读全文
posted @ 2023-10-20 17:27 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0)
摘要:/** * * Visitor Pattern 访问者是一种行为设计模式, 允许你在不修改已有代码的情况下向已有类层次结构中增加新的行为。 * file: Visitorts.ts * The Component interface declares an `accept` method that 阅读全文
posted @ 2023-10-13 18:12 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0)
摘要:/** * Strategy Pattern 策略是一种行为设计模式, 它将一组行为转换为对象, 并使其在原始上下文对象内部能够相互替换。 * * file: Strategyts.ts * The Context defines the interface of interest to clien 阅读全文
posted @ 2023-10-13 18:11 ®Geovin Du Dream Park™ 阅读(24) 评论(0) 推荐(0)
摘要:/** * Observer Pattern 观察者是一种行为设计模式, 允许一个对象将其状态的改变通知其他对象 * file: Observerts.ts * The Subject interface declares a set of methods for managing subscrib 阅读全文
posted @ 2023-10-12 18:16 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0)
摘要:/** * * Mediator pattern 中介者是一种行为设计模式, 让程序组件通过特殊的中介者对象进行间接沟通, 达到减少组件之间依赖关系的目的。 * file: Mediatorts.ts * The Mediator interface declares a method used b 阅读全文
posted @ 2023-10-12 13:18 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要:/** * * Command Pattern 命令是一种行为设计模式, 它可将请求或简单操作转换为一个对象。 * file: Commandts.ts * The Command interface declares a method for executing a command. * */ i 阅读全文
posted @ 2023-10-12 13:17 ®Geovin Du Dream Park™ 阅读(10) 评论(0) 推荐(0)
摘要:/** * Template Method pattern 模版方法是一种行为设计模式, 它在基类中定义了一个算法的框架, 允许子类在不修改结构的情况下重写算法的特定步骤。 * file: Templatets.ts * The Abstract Class defines a template m 阅读全文
posted @ 2023-10-11 18:18 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要:/** * State Pattern 状态是一种行为设计模式, 让你能在一个对象的内部状态变化时改变其行为。 * The Context defines the interface of interest to clients. It also maintains a * reference to 阅读全文
posted @ 2023-10-11 18:11 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0)
摘要:/** * Memento Pattern 备忘录是一种行为设计模式, 允许生成对象状态的快照并在以后将其还原。 * The Originator holds some important state that may change over time. It also * defines a me 阅读全文
posted @ 2023-10-11 18:02 ®Geovin Du Dream Park™ 阅读(21) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 9 下一页