<html>
<head>
<meta charset="utf-8">
<script src="taffy.js"></script>
<script src="jquery.js"></script>
<script>
var y = new Array();
var count;
window.onload = function () {
var city = TAFFY();
city.insert({ name: "D", state: "猫" });
city.insert({ name: "A", state: "犬" });
city.insert({ name: "D", state: "水" });
city.insert({ name: "A", state: "期" });
var n;
n = 0;
city({ name: "D" }).each(function (r2) {
n = n + 1;
y[n] = r2.state;
});
count = n;
}
function pushx() {
$('#sp').text(y[1]);
}
</script>
</head>
<body>
<div id="sp">ABC</div>
<input type="button" value="スタート" onclick="pushx()"/>
</body>
</html>
最終更新:2013年07月17日 14:23