目前我有以下但不太喜欢我:
1. index.php:
<!DOCTYPE html>
<html>
<body>
<div id = "bookList">
<?php
include("list.php");
?>
</div>
</body>
</html>
2.列表.php:
<?php
echo '<button id = "read">Read</button><br><br>';
echo
"<script type=\"text/javascript\">
$(\"#read\").click(function()
{
alert(\"<?php display(); ?>\");
});
</script>";
function display()
{
echo "hello";
}
?>
希望从我上面发布的代码中可以明显看出,我正在尝试使用 php 创建一个按钮,单击该按钮将依次调用 php 函数。到目前为止,我还没有成功。任何建议将不胜感激,但我希望我的代码尽可能接近我目前拥有的。