xml = '<?xml version="1.0" encoding="utf-8"?><root><html><a href="#">the new link</a></html></root>';
これらの変数は私の
$(function(){
xml = '<?xml version="1.0" encoding="utf-8"?><root><html><a href="#">the new link</a></html></root>';
$xmls =$($.parseXML( xml ));
$('button').on('click',function(){
console.log($xmls.find('html > *')[0]);
$('body').append($xmls.find('html > *')[0]);
});
})
追加されたタグが機能しない
preタグはAタグとして表示されます