$('#qqq').textbox({ inputEvents: $.extend({}, $.fn.textbox.defaults.inputEvents, { keyup: function (event) { if (event.keyCode == 13) { alert("qqq"); ...
分类:
其他好文 时间:
2020-05-15 00:29:28
阅读次数:
128
In this lesson, we define a "count" state value with the x-data directive provided by Alpine JS. This defines a new scoped component, which can have a ...
分类:
Web程序 时间:
2020-05-14 19:49:13
阅读次数:
101
事件总线知多少(1) Implementing an event bus with RabbitMQ for the development or test environment Abp EventBus ...
分类:
其他好文 时间:
2020-05-14 19:00:59
阅读次数:
57
PostProcessing是unity内置的后期效果增强组件,可以在极短的时间内得到各种常用特效的效果,对于编写Shader的苦手(比如在下)来说,确实是个天大的福音了。第一次接触PostProcessing与实际开发中,效果确实惊艳到了,之后PostProcessing就成了游戏开发的必备组件= ...
分类:
编程语言 时间:
2020-05-14 13:15:42
阅读次数:
70
1数据驱动编程的核心: 数据驱动编程的核心出发点是相对于程序逻辑,人类更擅长于处理数据。数据比程序逻辑更容易驾驭,所以我们应该尽可能的将设计的复杂度从程序代码转移至数据。 真的是这样吗?让我们来看一个示例。 假设有一个程序,需要处理其他程序发送的消息,消息类型是字符串,每个消息都需要一个函数进行处理 ...
分类:
其他好文 时间:
2020-05-14 11:07:33
阅读次数:
116
智慧建筑是指通过将建筑物的结构、系统、服务和管理根据用户的需求进行最优化组合,从而为用户提供一个高效、舒适、便利的人性化建筑环境,智慧建筑绝不仅仅只是智慧园区、智慧小区这种模式,这里我就通过 HT for Web 制作了一个以会展中心为主体的智慧建筑监控系统。 ...
分类:
Web程序 时间:
2020-05-12 18:46:28
阅读次数:
111
问题 当使用fastClick.js设置点击事件时,控制台报错: [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See htt ...
分类:
其他好文 时间:
2020-05-12 17:04:16
阅读次数:
76
Come on –Everybody’s doing it. That whispered message, half invitation and half forcing, is what most of us think of when we hear the words peer press ...
分类:
其他好文 时间:
2020-05-12 16:51:44
阅读次数:
126
在vue开发中,因为引用的父组件和子组件都使用了window.onresize以至于一个window.onresize失效。解决方案==>可以采用下面的方式 window.onresize = () => this.screenWidth = window.innerWidth // 改为以下写法 ...
对trace/debug/info级别的日志输出,必须使用条件输出形式或者使用占位符的方式。 说明:logger.debug("Processing trade with id: " + id + " and symbol: " + symbol); 如果日志级别是warn,上述日志不会打印,但是会 ...
分类:
其他好文 时间:
2020-05-12 11:41:17
阅读次数:
223