我想使用 JQuery 从 HTML 字符串中访问元素。
我有一个以下 AJAX 函数,它在成功时返回 HTML 文本。我希望使用 Jquery 仅从该 HTML 文本中提取标签的内容。
假设我有一个resp
包含 HTML 内容的变量。我想访问此 HTML 内容中标签的内容,如下所示。
var resp = "<html><head></head><body><form action="changePassword" name="fmChangePassword"> .... form elements .... </form></body> </html>"
alert(resp); //this alerts the full HTML content properly
alert($(resp).find("form").html()); //trial 1 -- returns NULL
var test = $(resp).find("#changePassword"); //#changePassword is the ID of the form
//alert(test.html());
displayChangePwdWindow(test); //need to pass the form content here
我尝试使用.find()
但没有成功。
谁能帮助我如何做到这一点?