JQueryを使用してHTML文字列から要素にアクセスしたい。
成功するとHTMLテキストを返す次のAJAX関数があります。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()
ましたがうまくいきませんでした。
誰かが私にこれを行う方法を手伝ってもらえますか?