- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
1小时前关闭。
Improve this question
<?php
if(isset($_POST[`submit`])){
$password=$_POST[`password`];
$c_password=$_POST[`c_password`];
if($password != $c_password){
echo "document.getElementById(`text`).style.display = `block`";
}
?>
<form method="post" action="">
<label>
Password
</label>
<input type="password" name="password" placeholder="Password" >
<label>
Confirm Password
</label>
<input type="password" name="c_password" placeholder="Password">
<p id="text" style="display:none">
Incorrect Password
</p>
<button type="submit" name="submit">
Submit
</button>
</form>
我想如果两个密码不匹配,然后p标记开始显示,但我不知道为什么这是不工作'
1条答案
按热度按时间xriantvc1#
你会讨厌这个的,你没有关闭你的标签。试试看它现在是否运行。另外PHP不会在你的浏览器本地运行,它需要使用php服务器,如Apache或Nginx来执行。
下面是一个输入示例