Angular-bind-hash
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/huyinghuan/angular-bind-hash
- 软件文档: https://github.com/huyinghuan/angular-bind-hash
软件介绍
在页面加载时绑定哈希到元素的值上,用于 AngularJS 应用中的 URL 复制。
示例代码:
angular.module('app', ['honey.hashBind'])
.config(['hashBindProvider', function(provider){
eventMap = {
'SELECT': false //Forbid select change event event.
'TEXT': [ //rewrite Enter key press events. working on element blur focus
'blur',
function(e, cb){
cb and cb()
}
'CHECKBOX': ...
'RADIO': ...
]
}
provider.setEventsMap(eventMap)
}])
C程序设计题解与上机指导
谭浩强 / 清华大学 / 2000-9-1 / 19.50元
《C程序设计题解与上机指导(第2版)》是和谭浩强编著的《C程序设计》(第二版)(清华大学出版社1999年出版)配合使用的参考书,内容包括:(1)《程序设计》(第二版)一书的习题和参考解答,包括了该书各章的全部习题,共约150题,对全部编程题都给出了参考解答;(2)上机指南,详细介绍了在当前广泛使用的Turbo C集成环境下编辑、编译、调试和运行程序的方法,并简要介绍了Borland C++的使用方......一起来看看 《C程序设计题解与上机指导》 这本书的介绍吧!
