$(function(){ doLoadUI("#load-menu-id","menu/doMenuListUI.do");}); 相当于 $(document).ready(function(){ $("#load-menu-id").load("menu/doMenuListUI.do"); ...
分类:
其他好文 时间:
2020-07-07 16:08:07
阅读次数:
45
| break | case | catch | continue | do | | delete | default | false | finally | for | |fuction | function| if | in | inscanceof | | new | null | retur ...
分类:
编程语言 时间:
2020-07-07 13:32:07
阅读次数:
112
admin@DESKTOP-IRQLFMD MINGW64 /d/web/yb (master) $ git push -u origin master remote: You do not have permission push to this repository fatal: unable ...
分类:
其他好文 时间:
2020-07-07 09:39:54
阅读次数:
94
Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra spa ...
分类:
其他好文 时间:
2020-07-06 16:06:35
阅读次数:
68
一.首先介绍两者的用法: 1.on的用法:以onclick为例 第一种: obj.onclick = function(){ //do something.. } 第二种: obj.onclick= fn; function fn (){ //do something... } 第三种:当函数fn有 ...
分类:
编程语言 时间:
2020-07-06 13:14:45
阅读次数:
56
B - Brexit Negotiations https://vjudge.net/problem/Gym-102483B 描述: As we all know, Brexit negotiations are on their way—but we still do not know wheth ...
分类:
其他好文 时间:
2020-07-06 12:29:36
阅读次数:
66
ID:技术让梦想更伟大 作者:李肖遥 wechat链接:https://mp.weixin.qq.com/s/b1jQDH22hk9lhdC9nDqI6w 相信大家写业务逻辑的时候,都是面向if、else、for、while、switch编程。但是你见过switch嵌套do..while吗? 先上代 ...
分类:
其他好文 时间:
2020-07-06 11:05:21
阅读次数:
162
报数游戏是这样的:有n个人围成一圈,按顺序从1到n编好号。从第一个人开始报数,报到m(<n)的人退出圈子;下一个人从1开始报数,报到m的人退出圈子。如此下去,直到留下最后一个人。 本题要求编写函数,给出每个人的退出顺序编号。 函数接口定义: void CountOff( int n, int m, ...
分类:
其他好文 时间:
2020-07-05 17:41:40
阅读次数:
131
总是要手动点程序,有时候忘记开也很麻烦。所以就想整个自启动。又因为我习惯休眠电脑,开机启动可能不好整,就用任务计划了,感觉没多少人用啊,但是真的方便易用。不知道为什么 两个例子,一个是学校要拨号宽带连接才能上网,一个是打开windowsapp的Microsoft TO DO。联网的例子实测过,TO ...
分类:
其他好文 时间:
2020-07-05 17:24:47
阅读次数:
98
只要条件为 true,循环能够一直执行代码块。 While 循环 while 循环会一直循环代码块,只要指定的条件为 true。 语法 while (条件) { 要执行的代码块 } 实例 在下面的例子中,循环中的代码将运行,一遍又一遍,只要变量(i)小于 10: while (i < 10) { t ...
分类:
编程语言 时间:
2020-07-05 15:43:16
阅读次数:
85