dpsr1670 2014-01-25 18:27
浏览 59
已采纳

JQuery函数没有运行

The program below contains various error messages to be displayed under certain conditions. These conditions are found through PHP code, after which the necessary JQuery script is echoed in PHP to make the messages appear.

At first, all messages in the .warning class are hidden. Then, if a certain condition is met, particular ids of this class are shown. Below is the relevant code.

<?php require_once 'connection.php'; ?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Create Account</title>
        <link rel="stylesheet" type="text/css" href="Styles2.css">
        <script src="JQuery.js"></script>
    </head>
    <body>

        <script>

    $(document).ready(function(){

 $('.warning').hide();

 });


    </script>

    <div class="unloggedheadingbar">

    </div>

    <br>

    <div class="createaccount">  

        <center><h1>Create Account</h1></center>

    <center><table>
        <form action="create_account.php" method="post">

         <tr><td><font class="createaccountfont">Email</font></td><td><input type="text" name="Email" placeholder="someone@somewhere.com" value="<?php if(isset($_POST['Create'])){ echo $_POST['Email']; } ?>" class="createaccounttext"></td></tr>
         <tr><td colspan="2"><br></td></tr>
         <tr><td><font class="createaccountfont">Password</font></td><td><input type="password" name="Password" class="createaccounttext"></td></tr>
         <tr><td colspan="2"><br></td></tr>
         <tr><td><font class="createaccountfont">Confirm Password&nbsp;&nbsp;</font></td><td><input type="password" name="ConfirmPassword" class="createaccounttext"></td></tr>

    </table></center>

        <br>

        <center><input type="submit" name="Create" value="Create Account" class="createButton" id="Create"></center>

        </form>

            <br>    

            <div class="warning" id="passwordMatchError">
                <center><font class="warningText">Your password confirmation must match with your original password!</font></center>
            </div>  

            <div class="warning" id="emailFormatError">
                <center><font class="warningText">Your email must match the someone@something.com format.</font></center>
            </div>

            <div class="warning" id="emailDuplicateError">
                <center><font class="warningText">An account under this email already exists.</font></center>
            </div>

        </div>

    <?php

    if(isset($_POST['Create'])){

        $email = $_POST['Email'];
        $password = md5($_POST['Password']);

        if(strpos($email, '@') !== TRUE){

            echo '<script>

                $(".warning").hide();

                $("#emailFormatError").show();

                  </script>';

        }elseif($_POST['Password'] != $_POST['ConfirmPassword']){

            echo '<script>

                $(".warning").hide();

                $("#passwordMatchError").show();

                  </script>';

        }else{

        $query = "SELECT * FROM user_table WHERE Email = '" . $email . "';";
        $result = mysqli_query($con, $query);

        if(mysqli_num_rows($result) == 0){

        $query = "INSERT INTO user_table VALUES ('" . $email . "', '" . $password . "');"; 
        mysqli_query($con, $query);

        }else{

           echo '<script>

                $(".warning").hide();

                $("#emailDuplicateError").show();

                  </script>';

        }

        }
    }

    ?>

</body>

However, the objects with particular IDs are not actually shown. Does anyone know why this may be? Thank you.

  • 写回答

1条回答 默认 最新

  • dsgsgs30201 2014-01-25 18:33
    关注

    jQuery actions should be placed in $( document ).ready( function () {} );, i.e.:

    echo '<script>$( document ).ready( function () {
        $(".warning").hide();
        $("#emailFormatError").show();
    } );</script>';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器