Daha önce olduğu gibi aynı sayfada çalışan, ama şimdi ben my'boss için öğrenebilirsiniz jQuery ile karıştırmasını için bir oyun alanı olarak kullanıyorum. ' Ne yazık ki, yürütmek için bu dosyada javascript almak şöyle dursun, bana bir uyarı veremez. Mükemmel bir sayfa çalışmaları PHP ve HTML hepsi, sadece mesele senaryo. Ben yanlış ne yapıyorum?
<?php
if( isset($_POST['mushu']) )
{
playAnimation();
clickInc();
}
function playAnimation()
{
echo "<img src='cocktail-kitten.jpg' id='blur'>";
}
function clickInc()
{
$count = glob("click*.txt");
$clicks = file($count[0]);
$clicks[0]+=1;
$fp = fopen($count[0], "w") or die("Can't open file");
fputs($fp, $clicks[0]);
fclose($fp);
echo $clicks[0];
}
?>
<html>
<head>
<title>Adobe Kitten</title>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<form action="<?php $_SERVER['PHP_SELF']; ?>"
method="post">
<input type="submit"
value="Let's see what Mushu is up to."
name="mushu">
</form>
<script>
$(document).ready( function()
{
$('#blur').click( function()
{
$(this).blur( function()
{
alert('Handler for .blur() called.');
});
});
});
</script>
</body>
</html>