iframe 和 jquery

function sendmessage(){ var content = $("textarea").val(); //parent.MainIframe.location = "${base}/web/admin/message/send?users=" + ${userIds} +"&content=" + encodeURI(encodeURI(content)); $.get("${base}/web/admin/message/send?users=" + ${userIds} +"&content=" + encodeURI(encodeURI(content)), function(response){ $("body").html(response); }); }

两种方法等效。

第一次接触query , 通过这个例子 感受了一下 ajax 的简单使用。异步刷新(firebug调试的时候,呵呵)

 

 

你可能感兴趣的:(jquery,Ajax,iframe,function,Firebug,query)