我有这样的 HTML 文本,它是使用 WinJS.xhr (Metro) 检索的。
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
</style>
</head>
<body>
<div id="getMe">
Something
</div>
</body>
</html>
我想将其转换为 JQuery 对象,以便在其上使用选择器。例如:
$("#getMe").text("Something different");
@Mark:我尝试使用它,但无法获取文本。
var yourString = "<html><body><div id=\"getMe\">TEST</div></body></html>"// somehow set to the above string
$el = $(yourString).find("#getMe");
console.log($el.text());