<script>
function ShowCommentBox() {
$("#dialog").dialog({ modal: true });
}
function GrabDetails() {
var obj = jQuery.parseJSON('{"name":"John"}');
$("#item").val(obj.name);
}
</script>
<div id="dialog" title="Comments" style="display:none;">
<table class="detailstable FadeOutOnEdit">
<tr>
<th>Item</th>
</tr>
<tr>
<td><asp:Label ID="ItemIdLabel" Text="item" runat="server"/></td>
</tr>
</table>
</div>
<input id="SubmitCommentsToInvoice" type="button" value="Comments" onclick="ShowCommentBox()" />
在我的 asp.net 项目中,当用户单击“评论”按钮时,会出现包含标签的 div。我正在尝试使用 JSON 来显示字符串“John” - 存储在其中的 #item 对象中的 'GrabDetails()'
然后在标签 text="" 如何拉出存储在 #item 对象中的值。
谢谢