样式图点击按钮移动:
jQuery代码如下:
$(function () {
//上
$("#btnUp").click(function () {
var f = parseInt($("img").parent().attr("id"));
if (f-3 >= 1) {
$("img").remove().clone().appendTo("td[id="+(f-3)+"]")
}
})
//下
$("#btnDown").click(function () {
var f = parseInt($("img").parent().attr("id"));
if (f + 3 <= 9) {
$("img").remove().clone().appendTo("td[id=" + (f + 3) + "]")
}
})
//左
$("#btnLeft").click(function () {
var f = parseInt($("img").parent().attr("id"));
if (f - 1 >= 1 && f % 3 != 1) {
$("img").remove().clone().appendTo("td[id=" + (f - 1) + "]")
}
})
//右
$("#btnRight").click(function () {
var f = parseInt($("img").parent().attr("id"));
if (f + 1 <= 9 && f % 3 != 0) {
$("img").remove().clone().appendTo("td[id=" + (f + 1) + "]")
}
})
})