應用js函數柯里化currying 與ajax 局部刷新dom

直接上代碼吧 最近讀javascript核心概念及實踐的代碼 感受頗有用 備忘。javascript

 1 <div id="request"></div>
 2     <script type="text/javascript">
 3         function request(item){
 4             return function(text){
 5                 $("#" + item).html(text);
 6             }
 7         }
 8         function getvalue(url,callback){
 9             $.ajax({
10                 type:'POST',
11                 data:'{data1:1,data2:2}',
12                 async:true,
13                 url:url,
14                 success:function(data,status){
15                     callback(data);
16                 },
17                 error:function(){
18                     throw new Error("wrong!");
19                 }
20             })
21         }
22         getvalue('a.php',request("request"));
23 
24 
25     </script>

最近讀書感受收穫仍是頗大的。php

附上原做者的連接http://hzjavaeyer.group.iteye.com/group/wiki?category_id=283html

相關文章
相關標籤/搜索