密码保护:微博1
无法提供任何摘要。这是一篇受保护的文章。
http://trentrichardson.com/Impromptu/index.php
想找个弹出confirm效果,感觉不错
其中一个A nice clean blue theme.官方有demo
$.prompt('Hello World!!',{
buttons:{Ok:true,Cancel:false},
prefix:'cleanblue'
})%
mark一个jquery confirm插件
http://nadiana.com/jquery-confirm-plugin
$.ajax({
..
success:function(json)
{
..
}
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
Today I went out comp. it seems big dust is blowing,look closer is the snow.of course it diffierent of yesterday's
which called sleet. it means rain and snow togather.rain contains snow.Today I want's learn jquery.contains().
jQuery.contains( container, contained )
Returns: Boolean
sample :
地址http://blog.jquery.com/2010/02/19/jquery-142-released/
好像出个delegate 委托函数吗?
官方举个例子,三个是等效的
$("table").delegate("td", "hover", function(){
$(this).toggleClass("hover");
});
因为jquery中有几个新特性非常需要比如has,于是用上1.4了,
但是有个小问题,原来的数据无法返回读出来,
排查了插件没有问题,看到1.4文档中说明,说1.4中对json格式更严格了,于是往这里找原因,
尝试下成功了!
简单记录,积少成多!
Jquery 1.4中文文档在线阅读
http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml
CHM版下载地址:http://jquery-api-zh-cn.googlecode.com/files/jQueryAPI-100204.zip
一觉睡醒,打开就jquery网站发现已经到1.4版本,新版本好像增加好多新的东西
http://api.jquery.com/category/version/1.4/
今天从 cnblogs的ovERREd看到了意大利博客园,看到了一篇jquery工具的链接
http://blogs.ugidotnet.org/alessage/archive/2009/06/12/jquery-tools.aspx
记下此jquery tools工具和意大利博客园:http://blogs.ugidotnet.org
jquery tools工具:http://flowplayer.org/tools/index.html
最近要医院要照顾宝宝,开出生证明,落户等事,很久没写文章了,
这里给个完整例子帮助理解jQuery Ajax 全解析例子,另外本文例子无法在firfox正常显示,下次再解决这个问题
其实jquery中没有innerHTML属性了,并且赋值不是如下操作 $("#id").html="值";
正确赋值有如下方法:
$(document).ready(function() {
$("#start").html("小孩出生了");
var result = "我做爸爸了";
$("#result").html(result);
$("#result").show();
});
完整例子源码