div包含一个包含3行的表,一个textarea和一个按钮。 使用JSON,3行显示正确的信息,但textarea显示为空白。我希望它显示数据库中的上一条记录。
function ChangeLoadingImage(CommentSuccessfullyUpdated) {
if (CommentSuccessfullyUpdated != "FALSE") {
var x = jQuery.parseJSON(CommentSuccessfullyUpdated);
$("#Item").text(x.Item);
$("#Description").text(x.Description);
$("#Price").text(x.Price);
$("#ExistingComments").text(x.ExistingComments);
}
else if (CommentSuccessfullyUpdated == "False") {
showLoadingImage.src = "../Images/X.png";
}
}
<div id="dialog" title="Comments" style="display:none;">
<table class="detailstable FadeOutOnEdit">
<tr>
<th>Item</th>
<th>Description</th>
<th>Owed</th>
</tr>
<tr>
<td id="Item"></td>
<td id="Description"></td>
<td id="Price"></td>
</tr>
</table>
<br />
<textarea id="ExistingComments" type="text" runat="server" rows="7"
maxlength="2000"> </textarea>
<input id="SubmitComment" type="button" value="Submit"
onclick="SubmitButton()" />
</div>
所有正确的值都在字符串中返回。但是没有命名td,iv命名为textarea,但它没有显示出来。关于为什么的任何想法?
String result = "{" + string.Format("\"Item\": \"{0}\", \"Description\": \"{1}\", \"Price\": \"{2}\", \"ExistingComments\": \"{3}\"", Item, Description, Price, ExistingComments) + "}";
return result;
修改
我也尝试过显示正确文本的alert(x.ExistingComments);
。
还试过$("textarea#ExistingComments").text(x.ExistingComments);
什么都没做?