摘要: $.ajax({ url: '../XmlFiles/Sm.xml', async: true, cache: false, dataType: 'xml', error: function (error) { alert(error); }, success: function (xml) { $('#TextArea1').val($(xml).find("content").text()); } }); 阅读全文
posted @ 2013-08-07 20:36 aiaito 阅读(134) 评论(0) 推荐(0) 编辑