0

MyPage.aspx で text() が空の文字列を返すのはなぜですか? .find と .filter は「imagesPaths」ノードを見つけます。

<script type="text/javascript" charset="utf-8">

function MyFunction(albumNb) 
{    
//xmlContent = "<images><imagePaths>2</imagePaths><imageTitles>title1,title2,title3, 
//title4</imageTitles></images>"

$.ajax({
    url: "MyPage.aspx?albumNb=1",
    type: 'GET',
    success: function (res) {
       var xmlContent = res.xml;             
       $imagePaths = $(xmlContent).find("imagePaths").text();  //returns empty string, Why? 
       //$imagePaths = $(xmlContent).filter("imagePaths").text(); //also returns empty string 

    }
 });

}

ありがとうございました

4

0 に答える 0