使用Dojo实现页面不刷新提交数据

it2022-05-09  22

使用Dojo实现页面不刷新提交数据

 

<div id=temp></div><button id="changeME">changeme</button> <form name="add">    <input type="text" name="a"/>    <input type="text" name="b"/> </form> <script>  dojo.addOnLoad(function(){   var changeMeButton=dojo.byId("changeME");   //给按钮添加点几事件   dojo.event.connect(changeMeButton,"onclick",function(){   //调用ajax     dojo.io.bind({     http://writeblog.csdn.net/Editor/FCKeditor/editor/"/crifa/BusinessInfoList.do",                 content: {a: 1, b: 2},   //url参数方式                 formNode:add           //表单方式     mimeType:"text/plain",     load:function(type,data,evt){      alert(data);     },     error:function(type,data,evt){      alert(data);     }    });});  }); </script> 

 

BusinessInfoList.java

    response.setCharacterEncoding( " utf-8 " );        PrintWriter out = response.getWriter();        out.print(a + b);         return   null ;一定要返回null

转载于:https://www.cnblogs.com/nanshouyong326/archive/2008/07/03/1234579.html

相关资源:数据结构—成绩单生成器

最新回复(0)