ajax实例

Posted zhanglijie1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax实例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Ajax测试版</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $(‘.button‘).click(function(){
        $.ajax({
            type:‘POST‘,
            url:‘SServlet?method=find1‘,
             data: {name:$("#name").val()},
            
            success:function(data){
                if(data.length>0){
                    
                    
                     $(‘.user‘).remove();
                     $(‘#id‘).append("<table class=‘user‘></table>");
                      $(‘.user‘).append("<tr><th>平台编号</th></tr>");
                    $.each(data,function(index){
                        
                        var tr;
                        tr=‘<td>‘+data[index].name+‘</td>‘;
                        $(".user").append(‘<tr>‘+tr+‘</tr>‘)
                    })

                    
                    }
                
            },
            error:function(){
                $(‘#id‘).html("hehehe");
            }
        });
    });
});
</script>
</head>
<body>
<div>
<p class="p">点击按钮变换内容</p>
<button class="button">点击</button>
<input type="text" id="name">
<div id="id">
</div>
</div>
</body>
</html>
JSONArray array2 = new JSONArray();
for (int i = 0; i < list2.size(); i++) {
              JSONObject json2 = new JSONObject();
              json2.put("name", list2.get(i).getSTOCK_NAME());
              array2.add(json2);
          }

resp.setContentType("application/json");
          resp.setCharacterEncoding("utf-8");
          resp.getWriter().write(array2.toString());

以上是关于ajax实例的主要内容,如果未能解决你的问题,请参考以下文章

创建片段而不从 java 代码实例化它

Javascript代码片段在drupal中不起作用

片段事务中的实例化错误

web前端开发JQuery常用实例代码片段(50个)

前端面试题之手写promise

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?