如何在php代码中添加脚本?假设我想为按钮单击提供警报。我该怎么办? 最佳答案 您可以照常回显所有HTML:<?php echo '<input type="button" onclick="alert(\'Clicky!\')"/>'; ?>