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 中简单地放置一个图像按钮,而不使用任何形式。
我只是这样做:
<input type="image" src="/images/buttons/button.gif"/>
那么有什么办法可以添加任何功能吗?我只想通过单击图像按钮将页面重定向到另一个页面。
如果还有其他方法,请告诉我。
(我是 PHP 新手,大约一个月前开始学习)
谢谢。
如果您只想重定向到另一个页面,请使用图像作为链接:
<a href="another_page.php"><img src="/images/buttons/button.gif"/></a>
您可以将其包装在超链接中:
<a href="pageToGoTo.php"><img src="/images/buttons/button.gif" /></a>