So.私は2つの入力(x、y)を持っていて、押されたときにsubmit codeがdraw divs(例:5x5)です。 divをクリックするとdivの背景色を変更したいクリックしてdivの背景色を変更する
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Feladat10</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form method="post">
<input type="text" name="x"/>
<input type="text" name="y"/>
<input type="submit" name="submit"/>
</body>
</html>
<?php
if(isset($_POST['submit']))
{
$x = $_POST['x'];
$y = $_POST['y'];
echo "<br/>";
for($i=1; $i <= $x; $i++)
{
echo "<br/><div class='tile'>".$i."</div>";
for($j=1; $j < $y; $j++)
{
echo "<div class='tile'>".$j."</div>";
}
}
}
?>
このコードをしようとしてイム:
<script>
$(function() {
$(".tile").click(function() {
$(this).css('background-color', '#000000');
});
});
</script>
しかし、その作業はありません。どのようなアイデアを私はこれを修正することができます
? –
@Sanooj T Uncaught ReferenceError:$が定義されていません –
あなたのjquery.jsファイルは –