当前位置: 首页 > 工具软件 > SweetAlert > 使用案例 >

JQuery---1、文档就绪、sweetAlert弹框

萧永望
2023-12-01

jQuery是一个JavaScript函数库。
jQuery是一个轻量级的"写的少,做的多"的JavaScript库

一、文档就绪事件:(jquery入口)

$(document).ready(function(){
    // 执行代码
});

或者
$(function(){
    // 执行代码
});

$(document)是一个选择器,加载了所有的html资源

注意:$(document).ready 里的代码是在页面内容都加载完才执行的,如果在文档没有完全加载之前就运行函数,操作可能失败。但是如果把script标签当到页面最后面那么就没问题,可以达到和ready差不多的效果。

简单弹框案例:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>JQuery</title>
</head>
<body>

<!-- jquery -->
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>

<script type="text/javascript">
    $(document).ready(function () {
        alert("hello!王优秀")
    })
</script>

</body>
</html>

二、Sweal弹框(带装饰的alert)

1 引入sweetalert资源

<!-- sweetalert -->
<script src="vendor/sweetalert/dist/sweetalert.min.js">
</script>

2 引入css样式资源

<!-- SWEET ALERT-->
<link rel="stylesheet"
    href="/vendor/sweetalert/dist/sweetalert.css"/>

3、html页面

sweetAlert("帐号或者密码错误");

 

 类似资料: