gpt4 book ai didi

javascript - 无法启动SweetAlert2,抛出错误?

转载 作者:行者123 更新时间:2023-12-02 23:27:13 25 4
gpt4 key购买 nike

HTML:

<html>
<head>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="module" src="sweetalert2.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
<script type="module" src="test.js"></script>
</head>
<body>

</body>
</html>

JS:

$( document ).ready(function() {

import Swal from 'sweetalert2.js'

Swal.fire({
title: 'Error!',
text: 'Do you want to continue',
type: 'error',
confirmButtonText: 'Cool'
})
});

两个文件(test.htmltest.js)位于同一目录中!

错误:

意外标识符位于 test.js - 第 3 行

类型错误:无法设置未定义的属性'Sweetalert2' - sweetalert2.js - 第8行

SweetAlert2

最佳答案

这里你不需要从'sweetalert2.js'导入Swal

工作示例

<!DOCTYPE html>
<html>
<head>
<title>sweetalert2</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8"></script>
<script>
$(document).ready(function() {
Swal.fire({
title: 'Error!',
text: 'Do you want to continue',
type: 'error',
confirmButtonText: 'Cool'
})
});

</script>

</body>
</html>

关于javascript - 无法启动SweetAlert2,抛出错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56682040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com