jget

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-14 12:13:52

软件介绍

This plugin get the query string appended in url in a easy way, like a GET in a server side language

Example

//url: http://www.foo.com/?test=var&test2=var2
var save1 = $.jget['test'];
alert(save1);
//this will output 'var'
var save2 = $.jget['test'2];
alert(save2);
//this will output 'var2'

If you wish to loop through the query string, you can make this way

for (var test in $.jget) {
$.debug(test+ ' = ' + $.jget[test] );
}
//the method debug comes with the plugin to retrieve a message in firebug, or a alert in IE

本文地址:https://codercto.com/soft/d/23357.html

重构

重构

Martin Fowler / 熊节 / 中国电力出版社 / 2003-8-1 / 68.00元

Martin Fowler和《重构:改善既有代码的设计》(中文版)另几位作者清楚揭示了重构过程,他们为面向对象软件开发所做的贡献,难以衡量。《重构:改善既有代码的设计》(中文版)解释重构的原理(principles)和最佳实践方式(best practices),并指出何时何地你应该开始挖掘你的代码以求改善。《重构:改善既有代码的设计》(中文版)的核心是一份完整的重构名录(catalog of r......一起来看看 《重构》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具