jquery实现页面局部刷新
2018-06-17 20:34:27来源:未知 阅读 ()
后台管理中总是使用frameset进行分成部分进行管理,但是感觉很不好用,尤其是页面间调转还要判断window.parent,太令我费神了,于是学习使用XMLHttpRequest进行页面局部刷新。代码如下:
- <html>
- <head>
- <script type="text/javascript">
- window.onload = function(){
- document.getElementById("email").onblur = function(){
- if(window.XMLHttpRequest){
- http_request = new XMLHttpRequest();
- if(http_request.overrideMimeType){
- http_request.overrideMimeType("text/xml");
- }
- }else if(window.ActiveXObject){
- try{
- http_request = new ActiveXObject("Msxml2.XMLHTTP");
- }catch(e){
- try{
- http_request = new ActiveXObject("Microsoft.XMLHTTP");
- }catch(e){}
- }
- }
- if(!http_request){
- window.alert("不能创建XMLHttpRequest对象实例!");
- return false;
- }
- http_request.onreadystatechange = function(){
- if(http_request.readyState == 4 &&
- http_request.status == 200) {
- document.getElementById("emailTip").innerHTML
- =http_request.responseText;
- }
- };
- http_request.open("GET", "email.jsp?email="+this.value, true);
- http_request.send(null);
- }
- }
- </script>
- </head>
- <body>
- <input type="button" value="修改" onclick="getOtherMessage();" />
- <input type="text" id="email" />
- <span id="emailTip"></span>
- <div id="view">
- 456
- </div>
- </body>
- </html>
后经高手提醒,可以使用ajax技术来写,使用jquery很简单,示例如下:
- <html>
- <head>
- <script type="text/javascript" src="js/jquery.js"></script>
- <script type="text/javascript">
- function getOtherMessage(){
- $.ajax({
- type:"post",
- url:"${pageContext.request.contextPath}/getOtherMessage.do",
- success:function(msg){
- $("#view").html(msg);
- },
- error:function(){
- alert("wrong");
- }
- });
- }
- </script>
- </head>
- <body>
- <input type="button" value="修改" onclick="getOtherMessage();" />
- <div id="view">
- 456
- </div>
- </body>
- </html>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python day2-爬虫实现github登录 2019-08-13
- python+selenium实现自动化百度搜索关键词 2019-07-24
- python + pyinstaller 实现将python程序打包成exe文件直接运 2019-07-24
- Python socket编程 (2)--实现文件验证登入 2019-07-24
- python实现查找最长公共子序列 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash