JSON不显示字符串传递的所有值

时间:2013-03-21 12:20:00

标签: javascript jquery asp.net html json

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);什么都没做?

2 个答案:

答案 0 :(得分:2)

  

使用JSON,3行显示正确的信息,但textarea是   显示空白。

您无法在textarea上调用text(),而是需要val()

更改

 $("#ExistingComments").text(x.ExistingComments);

 $("#ExistingComments").val(x.ExistingComments);

答案 1 :(得分:0)

$('textarea').filter('[id*=ExistingComments]').val(x.ExistingComments);