回答編集履歴
2
調整
test
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
fragmentを利用しようかと思ったのですが、普通にダミーのDOMを作るだけでいけそうですね
|
2
|
+
|
1
3
|
```javascript
|
2
4
|
|
3
5
|
const xml='sample.xml';
|
@@ -6,9 +8,7 @@
|
|
6
8
|
|
7
9
|
const xml=Object.assign(document.createElement('xml'),{innerHTML:txt});
|
8
10
|
|
9
|
-
const tmp=[xml].reduce((x,y)=>(x.appendChild(y),x),new DocumentFragment());
|
10
|
-
|
11
|
-
const ClientId=
|
11
|
+
const ClientId=xml.querySelector('RegisterClientResponse').getAttribute('ClientId');
|
12
12
|
|
13
13
|
console.log(ClientId);
|
14
14
|
|
1
ちょうせい
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
```javascript
|
2
|
+
|
3
|
+
const xml='sample.xml';
|
2
4
|
|
3
5
|
fetch(xml).then(res=>res.text()).then(txt=>{
|
4
6
|
|