我在jsp中的textarea中有一个纯xml。
<?xml version="1.0" encoding="UTF-8" ?>
<OTA_RQ Version="14.2" xmlns="http://www.opentrvl.org/OTA/2003/05">
<Reference Type="14" ID="res_no" />
</OTA_RQ>
我想使用jquery或javascript将res_no
更改为WA-12345
。我尝试了替换方法,但看起来jquery并没有将xml视为一个简单的字符串。
这些是我试图帮助的事情:
var strNewString = $("#myTextArea").html().replace(/\'res_no'/g,'WA-12345
“);
...
commandReplaced.replace("res_no", 'WA-12345');
...
j = $("#myTextArea").val());
j.find('Reference').attr('ID', 'WA-12345');