jQuery Values
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/Values
软件介绍
Makes it trivial to get/set values from any descendants of a DOM element(s), not just input and select elements. Simply add "name" attribute(s) (as you do for form elements) to the elements whose values you wish to retrieve or set and call values() on a parent selection to retrieve those keys/values in a handy little hash object.
To get all values:
var values = $('.parent').values();
To set values:$('.parent').values({ foo: 'bar', answer: 42 });
To get one value:var foo = $('.parent').values('foo');
To set one value:$('.parent').values('foo', 'bar');
For more details on all available functions and configuration options, see the comments in the source.
设计模式之禅(第2版)
秦小波 / 机械工业出版社 / 2014-2-25 / 89.00元
本书是设计模式领域公认的3本经典著作之一,“极具趣味,容易理解,但讲解又极为严谨和透彻”是本书的写作风格和方法的最大特点。第1版2010年出版,畅销至今,广受好评,是该领域的里程碑著作。深刻解读6大设计原则和28种设计模式的准确定义、应用方法和最佳实践,全方位比较各种同类模式之间的异同,详细讲解将不同的模式组合使用的方法。第2版在第1版的基础上有两方面的改进,一方面结合读者的意见和建议对原有内容中......一起来看看 《设计模式之禅(第2版)》 这本书的介绍吧!
