`
KAXU
  • 浏览: 266959 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
Hi everybody,I am using Jakarta Commons HttpClient 's postmethod to "scrape" a web page. I know I can use postMethod.addParameter() to set the values of text or hidden input fields before calling executeMethod().My question is, how do you check checkboxes through the API, when the checkb ...
最近在弄框架项目,要通过框架项目去读取和控制子项目。使用httpclient通过uri去访问子项目的业务功能。 废话不多说。 在非中文参数传递的时候都很正常。 但是后来遇到了使用get方式的带中文参数的url。让我纠结了2天多。字符码转来转去,最后还是失败了。 突然我改用post方式,就使用httpclient官方的demo。居然成功了。真是开心啊!   .... DefaultHttpClient httpclient = new DefaultHttpClient(); HttpResponse response; HttpEntity entity; HttpPost ...
最近开始学习blender,希望自己可以坚持下去。 在此共享一下花了12个小时找到的2本好书: Tradigital.Blender Introducing.Character.Animation.with.Blender.2nd.Edition 都是高清版哦!!!   下面是初学者可以去学习的网站: http://www.blender.org/education-help/tutorials/ http://forum.ubuntu.com.cn/viewtopic.php?f=35&t=313604&sid=8dab529dd5e46725a47e ...
clone( ) 克隆匹配DOM,并选中当前克隆匹配元素集合 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> ...
remove( [expr] ) 将匹配元素集合从DOM中完全删除 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> ...
empty( ) 删除匹配元素集合中所有子节点 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> <scri ...
replaceAll( selector ) 将匹配元素集合替换选中的匹配元素集合中每一个元素。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js">< ...
replaceWith( content ) 用‘content’的内容替换匹配元素集合 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></sc ...
wrapInner( html ) 将‘html’内容封装在匹配元素集合中每一个元素的内容或是文本上。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"> ...
wrapAll( html ) 将‘html’的内容封装在匹配元素集合的整个集合上。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></scrip ...
wrap(elem) 将特殊的‘elem’元素封装在匹配元素集合的每一个元素上 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script&g ...
wrap(html) 将‘html’的内容封装在匹配元素集合的每一个元素上。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></script> ...
insertBefore(content) 将匹配元素集合插入到匹配元素集合‘content’之前 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js">< ...
insertAfter(content) 将匹配元素集合插入至匹配元素集合‘content’之后。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js">< ...
before(content) 在匹配元素集合中每一个元素之前加上新内容‘content’ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="http://code.jquery.com/jquery-latest.js"></sc ...
Global site tag (gtag.js) - Google Analytics