Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 PHP 还是很陌生,但这看起来很简单,但我卡住了(可能是因为我累了) 无论如何,基本上我需要做的就是在单击按钮时在同一页面上回显一些文本。
我有一个 CSS 样式的按钮,这就是它在 html 中的样子:
<a href="#" class="button">Get watching</a>
我现在需要将其转换为 PHP,以便单击它时会回显一些文本。
非常感谢,乔
<a href="#" onClick="showText()" class="button">Get watching</a> <p id="showText"></p> <script type="text/javascript"> function showText() { document.getElementById("showText").innerHTML = "Some Text"; } </script>