0

这是我的js代码:

$(document).ready( function(){
        $.ajax({
        type: "GET",
        url: "vector.xml",
        dataType: "xml",
        success: function(xml) {
                            $(xml).find('Vector').each(function() {
                            //var attrVal = $(this).find('VectorType').attr('tc');
                            var intialVal = $('this').find('InitialValue').text();
                            var attrVal = $(this).find('VectorMode').attr('tc');
                            alert(intialVal);

                        }); 
                }
            });
    });

XML 看起来像这样:

<Values>
        <Result>
          <ResultBasis>
            <Vector>
              <VectorType tc="71"></VectorType>
              <VectorBaseDate>2012-06-16</VectorBaseDate>
              <InitialValue>150000</InitialValue>
            </Vector>
            <Vector tc="T20V09">
              <VectorType tc="71"></VectorType>
              <VectorBaseDate>2012-06-16</VectorBaseDate>
              <InitialValue>150000</InitialValue>
            </Vector>
            <Vector>
              <VectorType tc="5"></VectorType>
              <VectorBaseDate>2012-06-16</VectorBaseDate>
              <VectorMode tc="4"></VectorMode>
              <InitialValue>102.47</InitialValue>
            </Vector>
            <Vector>
              <VectorType tc="5"></VectorType>
              <VectorBaseDate>2012-06-16</VectorBaseDate>
              <VectorMode tc="3"></VectorMode>
              <InitialValue>307.42</InitialValue>
            </Vector>

在这里,我可以对 and 元素的值进行属性化VectorType,但对and元素的值VectorMode没有运气。InitialValueVectorBaseDate

alert(var intialVal = $('this').find('InitialValue').val());

给我undefined

alert(var intialVal = $('this').find('InitialValue').text());

给我空的警报声明。

Note: <script src="jquery-1.8.1.min.js"></script>
4

2 回答 2

0

我不确定 jQuery 版本,但我知道在 Javascript 中您正在寻找的是 nodeValue。

于 2013-01-08T19:47:21.307 回答
0

尝试使用this而不是'this'

var intialVal = $(this).find('InitialValue').text();
于 2013-01-08T20:08:05.983 回答