- 浏览: 271609 次
- 性别:
- 来自: 武汉
最新评论
-
dwl0410:
我的这种 aciton请求怎么 不行啊。。
<scri ...
jquery加载页面时调用js的方法 -
djinjie945:
谢谢,好使
jquery 遍历 map(callback) -
KAXU:
对的,官网上的。
jquery 控制 insertBefore(content) -
sumaolin:
这是手册上的示例吧
jquery 控制 insertBefore(content) -
KAXU:
black.angel 写道
楼主你是转载的吧,怎么弄都弄不好 ...
AppFuse2.0 初始化
文章列表
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>
...
- 2009-02-03 17:10
- 浏览 3529
- 评论(0)
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>
...
- 2009-02-03 16:43
- 浏览 1578
- 评论(0)
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 ...
- 2009-02-03 16:21
- 浏览 2469
- 评论(0)
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">< ...
- 2009-02-03 16:14
- 浏览 2724
- 评论(0)
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 ...
- 2009-02-03 15:42
- 浏览 3038
- 评论(0)
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"> ...
- 2009-02-03 15:28
- 浏览 2391
- 评论(0)
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 ...
- 2009-02-03 15:12
- 浏览 1422
- 评论(0)
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 ...
- 2009-02-03 15:03
- 浏览 1103
- 评论(0)
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> ...
- 2009-02-03 14:49
- 浏览 1475
- 评论(0)
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">< ...
- 2009-01-13 17:25
- 浏览 2950
- 评论(2)
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">< ...
- 2009-01-13 17:21
- 浏览 3084
- 评论(0)
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 ...
- 2009-01-13 17:02
- 浏览 2743
- 评论(0)