我試圖使用jQuery和Reveal Modal jQuery plugin創建基於this example的模態。jQuery莫代爾不顯示
我的PHP代碼:
IF ($q3)
{
IF ($admin_default_activate == 0)
{
echo "<span style=\"color:green\">Your account is created, but an Administrator must activate it!</span>";
}
ELSE
{ echo "
<div id=\"modal\">
<div id=\"heading\">
Your mailaccount is activated!
</div>
<div id=\"boxcontent\">
<p><b>Account Details:</b><br><b>Email:</b> $user<br /><b>Password:</b> $userpass1<br><br><b>Settings:</b><br><b>POP3:</b> mail.website.se (Port 110)<br><b>IMAP:</b> mail.website.se (Port 143)<br><b>SMTP:</b> mail.website.se (Port 25/587)</p>
<a href=\"#\" class=\"button red close\"><img src=\"popup/images/cross.png\">Close window</a>
</div>
</div>
";
}
}
ELSE
{
//echo "<span style=\"color:red\">Database error: Could not create the account. Contact an Administrator!</span>";
}
JavaScript代碼是在標籤內,但它仍然不工作。
原來按鈕的代碼是:
<a href="#" id="button">Click me</a>
而且我現在使用的一個是:
<input type="submit" id="button" name="submit" value="Create">
我不知道是否有什麼差別。
哪個'div'可能是因爲'if'條件。 –
這兩者都不好,但爲什麼你會迴應html,然後通過關閉php標籤輸出html?你應該堅持一個或另一個 – kennypu
我試圖用「回聲」過,但didn't工作無論是 – Hampe