javascript-通过JSON接收数据后的可编辑文本框

我通过JSON从state.jsp接收数据,并在ID为textBox2的文本框中以auto.jsp显示数据,但是我无法在接收数据的地方编辑该文本框,为什么呢?

//auto.jsp:

 $("#combo1").change(function() {
     // by onchange event of comboBox, i am displaying string "anyname"
     // on that below textBox.
     $.getJSON('state.jsp', { combo1Val : $(this).val() }, function(responsedata) {
         $("#textBox2").replaceWith(responsedata.name);
     });
 });
 // i am displaying "anyname" here, but why i am not able
 // to edit this text Box after displaying? I have not set it to readonly
 <input type="text" id="textBox2" name="2ndtextBox/> 

//state.jsp

<%@page import="net.sf.json.JSONObject"%>
<%@page import="net.sf.json.JSONArray"%>
<%
JSONObject arrayObj= new JSONObject();
       arrayObj.put("name","anyname");// displaying "anyname" in that textBox
      response.setContentType("application/json");
      response.getWriter().write(arrayObj.toString());
%>

我在该文本框中显示字符串“ anyname”,但我现在无法编辑此文本框,为什么?我尚未将其设置为只读.任何帮助

解决方法:

.replaceWith()将匹配集替换为指定的值(文本,dom元素,jquery对象).因此,在代码中,您将使用响应数据替换while INPUT元素,而不是设置其值

若要设置表单元素的值,请使用.val()方法

$("#textBox2").val(responsedata.name);

相关文章

IE6是一个非常老旧的网页浏览器,虽然现在很少人再使用它,但...
PHP中的count()函数是用来计算数组或容器中元素的个数。这个...
使用 AJAX(Asynchronous JavaScript and XML)技术可以在不...
Ajax(Asynchronous JavaScript and XML)是一种用于改进网页...
本文将介绍如何通过AJAX下载Excel文件流。通过AJAX,我们可以...
Ajax是一种用于客户端和服务器之间的异步通信技术。通过Ajax...