xmlplus
Version:
A JavaScript framwork for developing projects efficiently.
17 lines • 674 B
JavaScript
xmlplus("xp", function (xp, $_, t) {
$_().imports({
Example: {
xml: "<div id='example'>\
<h1 id='dog'>dog</h1>\
<h1 id='cat'>cat</h1>\
</div>",
fun: function ( sys, items, opts ) {
var kids = sys.example.kids(); // 函数 kids 返回系统对象集
var objects = kids.hash(); // 函数 hash 返回包含键值对集合的普通对象
for ( var key in objects ) {
console.log(key); // 会依次打印出 dog、cat
}
}
}
});
});