所以。我有2個輸入(x,y),當按提交代碼是繪製div(例如: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文件 –