我可以将 php 放在 onfocus 和 onblur 中吗?在下面的代码中,有什么方法可以编写:
comment<?php echo $row['titol_post'] ?>
在现在有评论的地方?
<?php $result = mysql_query("SELECT * FROM blog WHERE id= 1") or die(mysql_error());
while($row = mysql_fetch_array($result)) { ?>
<Form id="comentari" method="POST" action="rebut.php">
<textarea name="text_comment" rows="2" cols="30"
onfocus="if (this.value=='Comment') this.value = '';"
onblur="if (this.value=='') this.value = 'Comment';">Comment</textarea>
<input type="submit" class="boto" name="comentari" value="enviar"/>
</Form>
<?php } ?>