找到约 10000 条结果
  • SAP UI5和Angular里控制器(Controller)实现逻辑比较
    Let’s first refresh our memory on SAPUI5 controller. I have a simple xml view which only contains a button:
    2020-05-07
  • 使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理
    Create a new empty tab in your Chrome, and first create a snapshot with empty heap status by click “Take Snapshot” button:
    2020-09-03
  • 使用Chrome开发者工具研究JavaScript的垃圾回收机制
    Create a new empty tab in your Chrome, and first create a snapshot with empty heap status by click “Take Snapshot” button:
    2020-05-07
  • CISC 360 Piazza
    CISC 360 Assignment 1due Tuesday, 2021–01–26 at 11:59pm, via onQJana DunfieldJanuary 17, 2021Reminder: All work submitted must be your own. You may (and should) ask for help from theinstructor, TAs or on Piazza.Most of the questions on this assignment are about writing code, but a few questions a...
    2022-03-18
  • 【Error_log】No.001
    {代码...}
    2014-08-30
  • javascript and jQuery
    5 types:js should be camelCasenumber, string, boolean, null and undefinedeg: for string:
    2019-09-15
  • jQuery入门学习笔记1
    首先明确jQuery是一个JavaScript库,它的类型是函数,这一点可以通过typeOf查看。需要注意的是,script引入方式是本地文件引入,如果是CDN引入,typeOf返回的结果是undefined
    2019-06-24
  • JQ简单实现隔行换色与悬浮特效
    广州PHP]JQ简单实现隔行换色与悬浮特效: [PHP] 纯文本查看 复制代码? <!DOCTYPE html><html> <head> {代码...} </head> <body> {代码...} </body></html> 效果: 更多技术资讯可关注:gzitcast
    2019-09-12
  • 简单动态启停图 js jquery css3
    实现功能:开始云朵向右侧漂浮,按暂停键停止运动,同时按键显示为播放,按播放键云朵开始运动,同时按键显示为暂停。下面为示例代码,注意js 和 jquery区别。示例代码:
    2017-11-23
  • js将rgb转化为16进制
    {代码...}
    2019-10-09
  • vue 集成 chartjs
    指令 该指令的作用是dom渲染后触发,因为非vue的插件有的是dom必须存在的情况下才可以执行 {代码...} 安装chartjs {代码...} chartjs 组件 {代码...} 用法 {代码...} options 及数据结构 请跳转
    2019-08-19
  • MATH4321 游戏开发理论算法
    MATH4321 Game Theory (2023 Spring)Assignment 1Submission deadline of Assignment 1: 11:59p.m. of 10th Mar, 2022 (Fri)Instruction: Please complete all required problems. Full details (including (i)description of methods used and explanation, (ii) key formula and theorem usedand (iii) calculation an...
    2024-01-11
  • MATH4321游戏理论
    MATH4321 Game Theory (2023 Spring)Assignment 1Submission deadline of Assignment 1: 11:59p.m. of 10th Mar, 2022 (Fri)Instruction: Please complete all required problems. Full details (including (i)description of methods used and explanation, (ii) key formula and theorem usedand (iii) calculation an...
    2023-03-10
  • JS基础入门篇(四)—this的使用,模拟单选框,选项卡和复选框
    1.this的使用 {代码...} {代码...} 2.模拟单选框 模拟单选框效果图方法一:大清洗,在设置颜色之前把所有的颜色值设为空。然后再设置点击框的颜色。 {代码...} 方法二:点击什么,清除什么。记录当前点击的。 {代码...} 3.选项卡 模拟选项卡 方法一:大清洗,在设置颜色之前把所有的颜色值设为空。然后再设置点击框的颜...
    2018-05-14
    4
  • css 进度条的文字根据进度渐变
    需求 1.进度条里面的文字需要根据进度的长度而变化 原理 用两个一模一样的样式的 div 重叠起来 效果 字体开始为 蓝色,跟随进度条变为 白色 在线预览: [链接] 代码 {代码...}
    2018-01-08
  • [转]Notepad++ 中文自动换行问题解决方案
    Q: Hi all,It seems that NPP treats all Chinese characters as a single word, evenif it is a sentence. When Chinese and English are edited in the samefile, unexpected wraps occur and make the text right ragged. Sometimesthe ragged space is so big when the following Chinese sentence is longand take...
    2019-06-26
  • 关于node.js回调函数的一点联想 愤怒(二)
    首先大家看一下这个普通的javascript的函数,并且参数也是函数。 <script> {代码...} </script> 我们也发现nodejs中也有很多回调函数,并且也有很多参数。下面是一个读取文件的例子: {代码...} 至于err和data是怎么得到以及回调函数内部结构怎么样则要看源码了吧。如果猜想不正确欢迎指正。 一个卖酱酒的非...
    2016-05-12