JavaScript
12
Вклад в тег
var $input = $("input:hidden"); // В общем получаете элемент
alert($input.val());
var input = document.querySelector("input[type='hidden']");
alert(input.value);
var i = 0;
$('td').click(function() {
i = i + 1;
console.log(i);
console.log($(this));
// if(i % 2) {
// ...
// }else{
// ....
// }
});
var cachedCell = null;
$('td').click(function() {
var $this = $(this);
if(cachedCell === null)
return cachedCell = $this;
var targetColor = $this.attr("bgcolor");
var cachedColor = cachedCell.attr("bgcolor");
$this.attr("bgcolor", cachedColor);
cachedCell.attr("bgcolor", targetColor);
cachedCell = null;
});