每次重新加载页面时都会运行Html'onclick'吗?

时间:2015-12-14 18:24:10

标签: php html

<!DOCTYPE html>
<html>
<title>
Test page
</title>

<?php
$uri=$_SERVER['REQUEST_URI'];
?>
<a href='#' onclick='<?php file_put_contents('feedback.txt',$uri.' ST'.'I understand this'.PHP_EOL , FILE_APPEND | LOCK_EX)?>'>I understand this </a>
<button onclick='<?php file_put_contents('feedback.txt',$uri.' ST'.'I don\'t understand this'.PHP_EOL , FILE_APPEND | LOCK_EX)?>'>I don't understand this </button>

在上面的html / php代码中,我有一个按钮和一个应该在单击时写入文件的链接。然而,当我尝试使用它时,我发现每次刷新页面时都会运行代码,有什么方法可以阻止它吗?

0 个答案:

没有答案