<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」を表示しようとしています - 「GrabDetails()」の #item オブジェクトに格納されています
次に、ラベル text="" で、#item オブジェクトに格納されている値を取得するにはどうすればよいですか。
ありがとう