db.Append("<tr>");
 db.Append("<td>").Append("<input name='r_" + index + "_trXh'  value='" + arr[0]+ "' type='text'/>").Append("</td>");
 db.Append("</tr>");  
这是从A界面传过来的数据表格
我在B界面采用异步调用的方式把它绑定到Literal上
如这样:
function Show(){
   var hid=$("input[id$='hidd']").val();
   $.post("ajaxIndex.aspx?hid="+encodeURIComponent(hid),
      function(data){
      $("input[id$='litTextFu']").innerText=data;
      });
       return false; 
}
红色部分是Literal  但是这样绑定出错了
哪位大侠帮忙看下  先谢谢了