-2

我的 xml 看起来像这样:--->

            <?xml version="1.0"?>
            <childrens>
            <child1 entity_id="1" value="Root Catalog" parent_id="0">
                <child2 entity_id="2" value="Navigate" parent_id="1">
                    <child4 entity_id="4" value="Activities" parent_id="2">
                            </child4>
                    </child2>
            </child1>
            </childrens>

我想输出如下内容:--->
根目录
导航
活动
这是我的代码:

<?php
$str = '<childrens>
<child1 entity_id="1" value="Root Catalog" parent_id="0">
    <child2 entity_id="2" value="Navigate" parent_id="1">
        <child4 entity_id="4" value="Activities" parent_id="2">
                </child4>
        </child2>
</child1>
</childrens>';
$pattern = '/<(.*)="(.*)">/';
preg_match_all($pattern, $str, $matches);
print_r($matches[1]);
?>
4

3 回答 3

0

自从我使用 jquery 以来已经很久了,但如果你有,那么我认为获取值的粗略代码可能是

var selected = $('*[value]'),res =[]; 
for(var i =0;i<selected.length; i++) { 
 res.push(selected[i].value); 
}

我相信您可以使用具有某些功能的 .each 在一行中执行此操作,我对 jquery 太生疏了,无法给您答案

于 2013-01-18T12:21:23.503 回答
0

这个怎么样:

<?php
$str = '<childrens>
<child1 entity_id="1" value="Root Catalog" parent_id="0">
    <child2 entity_id="2" value="Navigate" parent_id="1">
        <child4 entity_id="4" value="Activities" parent_id="2">
                </child4>
        </child2>
</child1>
</childrens>';
$xml = simplexml_load_string($str);

$values = $xml->xpath('//@value');

foreach($values as $value) {
   echo $value."\n";
}
?>
于 2013-01-18T12:40:27.940 回答
0

如果你有 xml 文件 saperated..

 <script>
      $(document).ready(function()
       {
        var html = '';
        $.get('my.xml', function(d){
           $(d).find('children').each(function(){ 
                   $(this).children().each(getChildNode);
            });
              console.log(html);
             alert(html);
       });

      function getChildNode(obj){
             html += $(this).attr('value') + '\n<br>';
            if($(this).children().length > 0){
                  $(this).children().each(getChildNode); 
             } 
       }

    });

</script>

我希望它对你有用。

谢谢

于 2013-01-18T12:41:02.803 回答