知识点在:《 html5 app 应用开发教程》第209页 jQuery的扩展可分为两类 1: jquery全局函数的扩展语法的定义:$.extend({ 定义的函数名:function(){}}) 语汇的调用:onclick="$.函数名()" 2: jquery对象的扩散 1: jquery全局 ...
分类:
Web程序 时间:
2021-02-16 12:19:06
阅读次数:
0
Introduction: It's a paper to reorganize the knowledge of List Rendering in Vue official guide. So a lot of content is from the Vue Official guide. Th ...
分类:
其他好文 时间:
2021-02-16 12:03:49
阅读次数:
0
就绪探针和存活探针简介 就绪探针 Readiness Probe: Kubernetes需要一种机制当Pod服务启动的时候需要判断Pod是否可以接受请求,是否已经完成初始化达到可工作状态。 存活探针 Liveness Probe ...
分类:
Web程序 时间:
2021-02-15 12:26:13
阅读次数:
0
引言 在写前端的时候经常用到js或jquery语法,有时候傻傻分不清,现在将学习过程中遇到的总结一下。 $(function(){ })的使用 JQuery 的代码我们通常会包裹在一个$(function(){})函数中,jq 的$(function(){})也就是$(document).ready ...
分类:
其他好文 时间:
2021-02-15 12:18:54
阅读次数:
0
Mongodb启动命令mongod参数说明mongod的主要参数有: 基本配置 --quiet # 安静输出 --port arg # 指定服务端口号,默认端口27017 --bind_ip arg # 绑定服务IP,若绑定127.0.0.1,则只能本机访问,不指定默认本地所有IP --logpat ...
分类:
数据库 时间:
2021-02-15 11:54:59
阅读次数:
0
1.开启对应Windows功能(适用于linux的Windows子系统) 2.微软商店对应下载 Windows terminal 、 ubantu 3.设置 Windows terminal ubantu:把下面这个加到/root/.bashrc里 #Fix mkdir command has wr ...
要求:年龄不满18 就边框飘红 后台代码: public class AgeInfoWithValidation : IDataErrorInfo { private int age =0; public int Age { get { return age; } set { age = value ...
分类:
其他好文 时间:
2021-02-09 12:02:45
阅读次数:
0
<html> <head> <script src="jquery-3.5.1.js"></script> </head> <body> <script> createOrOpenDb("teamtalk"); //新建或打开已有数据库 function createOrOpenDb(dbName) ...
分类:
数据库 时间:
2021-02-08 12:14:15
阅读次数:
0
安全编译: NX(堆栈不可执行): -z noexecstack SP(栈保护):-fstack-protector-all 或 -fstack-protector-strong BIND_NOW(立即绑定):-Wl,z,now 或 LD_BIND_NOW=1 RELRO(只读重定位):-Wl,-z ...
分类:
其他好文 时间:
2021-02-08 11:52:19
阅读次数:
0
回到顶部 一、全局配置文件 1、分类:(文件名固定) (1)application.properties(2)application.yml(3)以上两种文件作用类似,但是内部写法有些区别。 2、作用: 修改 SpringBoot 自动配置的默认值。 3、什么是yml YML文件格式是YAML (Y ...
分类:
编程语言 时间:
2021-02-08 11:44:58
阅读次数:
0