0

我想打开一个表单,其中的字段填充了与某条记录相对应的数据。

例子:

  • 假设某种形式:

    小狗

            <table id="tabledogs" class="ui-widget ui-widget-content">
                <thead>
                    <tr class="ui-widget-header ">
                        <th>ID</th>
                        <th>Name</th>
                        <th>Action</th>
                    </tr>
                </thead>
                <tbody>
                    <c:forEach var="dog" items="${sessionScope.dogs}">
                        <tr>
                            <td width="50%" align="left">${dog.id}</td>
                            <td width="50%" align="left">${dog.name </td>
                            <td><button id="update">Update</button> </td>
                        </tr>
                    </c:forEach>
                </tbody>
            </table>
        </div>
    
  • 我想打开下面的表格,里面有相应的狗数据(为了节省空间,这里没有显示其他表格配置):

        <form>
            <fieldset>
    
                <label for="id">ID</label> 
                <input type="text" name="id" id="id" class="text ui-widget-content ui-corner-all" /> 
    
                <label for="name">Name</label> 
                <input type="text" name="name" id="name" class="text ui-widget-content ui-corner-all" /> 
    
            </fieldset>
        </form>
    </div>
    

虽然我有以下 JavaScript,但它会打开表单但没有数据:

$("#update").button().click(function() {
    $("#dialog-form").dialog("open");
});
  • 所有这些东西都在正常工作。如何将狗的数据传递给要显示的表单?正如您可能看到的,我在 SessionScope 中有一组“狗”对象。谢谢帮忙!!
4

1 回答 1

0

Jquery has a .val() function that should do what you want.

于 2013-03-11T20:27:03.553 回答