$("#test").click(GetNews);
function GetNews()
{
$(this).html("Loading News......");
$.ajax({
type:"post",
url:"load.htm",
dataType:"html",
data:"",
ifModified:true,
success:function(result)
{
$("#test").html(result);
}
}
posted on 2007-12-15 16:19
汪杰 阅读(282)
评论(0) 编辑 收藏 引用 所属分类:
jquery