输入按钮隐藏基于url
我试图在加载特定 URL product_catalog.php?c=12
时隐藏输入按钮。
这是我在 product_catalog.php
中的按钮代码:
echo "<INPUT type=\"text\" name=\"qty\" size=2 value=\"1\" class=\"text-pc\"><span class=\"small2\">kpl</span> ";
echo "<INPUT type=\"submit\" name=\"add\" value=\" \" id=\"lisaa\" class=\"add-to-basket\">";
如果用户正在浏览 product_catalog.php?c=12
,如何隐藏它?
I am trying to hide an input button hide when the specific URL product_catalog.php?c=12
is loaded.
Here is my button code in product_catalog.php
:
echo "<INPUT type=\"text\" name=\"qty\" size=2 value=\"1\" class=\"text-pc\"><span class=\"small2\">kpl</span> ";
echo "<INPUT type=\"submit\" name=\"add\" value=\" \" id=\"lisaa\" class=\"add-to-basket\">";
How do I hide it if the user is browsing product_catalog.php?c=12
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用简单的
if
语句检查$_GET['c']
是否不等于12
:请注意,这是一个相当简单的问题关于PHP的基本控制结构。在继续您的项目之前,您可能想通过阅读 PHP 手册来了解有关控制结构的更多信息。
此答案中涉及的概念:
Use a simple
if
statement to check if$_GET['c']
is not equal to12
:Note that this is a fairly simple question about a base control structure of PHP. You might want to learn more about control structures by reading the PHP Manual before continuing with your project.
Concepts touched in this answer: