热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在使用ajax重新加载页面时保持“记住”复选框选项-Howtokeep“remember”Checkboxchoicewhenpagereloadusingajax

Iamnewtoajax.Iamusingajaxandjsptoretrievedatafromdatabase.Whennewdatainsertedint

I am new to ajax. I am using ajax and jsp to retrieve data from database. When new data inserted into the database the new data will be displayed automatically in the Jsp page.So in the ajax code I set the Timeout(). In the jsp page against every data row there is a checkbox. If I check the checkbox the checkbox is changed when the page is reload. But I want to remain unchanged the checkbox when the page is reloaded...

我是ajax的新手。我正在使用ajax和jsp从数据库中检索数据。当新数据插入数据库时​​,新数据将自动显示在Jsp页面中。所以在ajax代码中我设置了Timeout()。在每个数据行的jsp页面中都有一个复选框。如果我选中该复选框,则在重新加载页面时会更改复选框。但是当我重新加载页面时,我希望保持不变复选框...










        

<%
    DBBean db=new DBBean();
    Connection con=null;
    ResultSet rs=null;
    int count=0;
    String checkName="checkbox";
    String checkbox1="";
    try
    {
        con=db.getDBConnection();
        rs=db.execSQL("select * from login_history");
%>                  


                

    <%
        while(rs.next())
        {
            checkbox1=checkName+count;
            count++;
            out.println(checkbox1);
        %>

        

<%
    /* out.println(rs.getString(1));
    out.println(rs.getString(2));
    out.println(rs.getString(3));
    out.println("

");*/ } %>
checkboxuser_id ip_address login_status
<%=rs.getString(1) %> <%=rs.getString(2) %> <%=rs.getString(3) %>
<% rs.close(); con.close(); } catch(Exception e) { e.printStackTrace(); } %>

1 个解决方案

#1


0  

i assume you are using servlet if so; then save the choice value on request set attribute and assign it when returning to your page reload e.g :

我假设你正在使用servlet;然后将选择值保存在请求集属性上,并在返回页面重新加载时指定它,例如:

request.setAttribute("attributeName",attributeValue); 

Set Attributes in a Servlet Request and retrieve it by Expression Language EL directly in jsp or by Javascript manipulation

在Servlet请求中设置属性,并通过表达式语言EL直接在jsp或Javascript操作中检索它


推荐阅读
author-avatar
断雁难飞_920
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有