如何在jsp中访问javascript值?

时间:2010-12-04 12:56:22

标签: javascript jquery ajax jsp

您好我正在使用jquery。等,

 <script type="text/javascript">

$(function() {

         $('#usertype').change(function() {
                $.post("<%=request.getContextPath()%>/CommonServlet", {utype:$('#usertype').val(),funName:'getConfigMast'},  function(j){
                 $("input#it").html(j);alert(j);

             });
         });
 });

</script>

在这个j中有一些模型对象我必须在同一个jsp页面中迭代他的对象,我必须在<table>的文本字段中显示这些值。这里当我选择相同<table>

的组合框中的值时,将调用jquery函数

和jsp表:

<table >    
    <tr>
      <td><input name="filetype" type="text" class="formTxtBox_1" id="filetype"/></td>
    </tr>
    <tr>      
      <td>
          <select name="usertype"  id="usertype" >
            <option >- Select Type of User -</option>
            <option value="admin"> administrator </option>
            <option selected="true" > normal</option>
            <option> member</option>
          </select>      </td>
    </tr>
 <tr>  
   <td><input name="singlefile" type="text" id="singlefile"/></td>
    </tr>
 <tr>
   <td><input name="totalfile" type="text"  id="totalfile"/></td>
    </tr>
<table>

1 个答案:

答案 0 :(得分:1)

输入字段的值需要使用val()函数设置,而不是html()

$('#singlefile').val(value);