使用JQUERY从另一个PHP页面更改元素类

时间:2018-08-22 17:12:22

标签: php jquery bootstrap-4

我正在尝试使用Bootstrap-4添加一个错误报告框。

警报在注册页面上加载为“折叠”类:

<input type="text" id="inputEmail" class="form-control" name="username" 
placeholder="Username" required minlength="4" autofocus>
            <div id=error_message class=collapse>
              <span class="alert alert-danger"> <STRONG>Error:</STRONG><? 
$_SESSION['message'] ?>
            </span>

这里的表单处理程序带有一个占位符,用于代码,是一个单独的PHP文件。

mysqli_stmt_execute($stmt);
$result = mysqli_stmt_get_result($stmt);

$num = mysqli_num_rows($result);

//Test to see if username exists
if ($num != 0 ){
$_SESSION['message']="The username is already taken";
//JQUERY HERE TO SHOW BOOTSTRAP ALERT DIV - CLASS TO 'SHOW'
}
?>

是否有可能,或者确实明智的做法是让JQuery影响另一页上的类,还是我在看这种错误的方式?抱歉,我是一名业余爱好者,对此我很陌生。

1 个答案:

答案 0 :(得分:0)

您可以通过对远程文件进行引导验证来实现。供参考,请通过https://formvalidation.io/guide/validators/remote/