私は、同じサイトから別のページの変数の内容にロードし、(XMLをパース)その内容からデータを取得するためにJavaScriptでなければなりません。解析のXMLHttpRequest(XPathを使用して)()結果
私はXMLHttpRequestを()とresponseTextプロパティを使用して、テキスト文字列変数にページのHTMLを頂いております。
その後I XMLオブジェクト(DOMParserに)にテキスト文字列を変換し、XPathを使用しようとしました。
Node cannot be used in a document other than the one in which it was created
どのように変換することができますXMLHttpRequestを()documentオブジェクトのXPathを使用して、それを処理するために結果:Firefoxのコンソールで
私は、エラーを見ましたか? このオブジェクトでdocument.evaluateをどのように使用する必要がありますか?私の仕事を簡単にする方法はありますか?
textString=file_get_contents('my url');
var parser = new DOMParser();
xml = parser.parseFromString(textString, "text/xml");
list = getI("(//td[contains(text(), 'Total:')])[1]",xml);
// Error: Node cannot be used in a document other than the one in which it was created`enter code here`
// HOW USE getI function here? (document.evaluate)
function file_get_contents(url) { // Reads entire file into a string
//
// + original by: Legaev Andrey
// % note 1: This function uses XmlHttpRequest and cannot retrieve resource from different domain.
var req = null;
try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {
try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {
try { req = new XMLHttpRequest(); } catch(e) {}
}
}
if (req == null) throw new Error('XMLHttpRequest not supported');
req.open("GET", url, false);
req.send();
return req.responseText;
}
function getI(xpath,elem){return document.evaluate(xpath,(!elem?document:elem),null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);}
上の 'evaluate'メソッドを使用しますあなた 'xml'ドキュメント! - すなわち' xml.evaluate(のxpath、... '助けを –