この例に基づいて、jQuery とReveal Modal 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">
それが違いを生むかどうかはわかりません。