<html>
<head>
<script src="taffy.js"></script>
<script src="jquery.js"></script>
<script>
window.onload = function () {
var city = TAFFY();
city.insert({ name: "D", state: "D1" });
city.insert({ name: "A", state: "D3" });
city.insert({ name: "D", state: "D2" });
city.insert({ name: "A", state: "D4" });
var x;
var y = new Array();
x = 0;
city({ name: "D" }).each(function (r2) {
x = x + 1;
y[x] = r2.state;
});
$('#sp').text(y[1]);
}
</script>
</head>
<body>
<div id="sp"></div>
</body>
</html>
最終更新:2013年07月16日 05:19