经过尝试,jquery确认,现在是jAlert,我每次都遇到相同的错误。
在控制台中,我得到-TypeError:$ .jAlert不是函数[了解更多]
<script src="js/jquery-3.3.1.min.js"></script>
<link href="css/jAlert.css" rel="stylesheet">
<script src="js/jAlert.js"></script>
<script src="js/jAlert-functions.js"></script>
我的按钮是...
<input type="radio" class="form-check-input" name="optionsRadios" id="mybtn" value="">
和脚本部分:
<script type="text/javascript">
$(document).ready(function(){
$('#mybtn').on('click',function(){
$.jAlert({
'title': 'Nice Size',
'content': 'This is the sized alert',
'theme':'blue',
'closeOnClick': true
});
});
</script>
我猜jQuery和jAlert冲突了...
有人可以帮忙吗?
最佳答案
如何使用fn扩展jquery功能,以便您的代码
<script type="text/javascript">
$(document).ready(function(){
$('#mybtn').on('click',function(){
$.fn.jAlert({
'title': 'Nice Size',
'content': 'This is the sized alert',
'theme':'blue',
'closeOnClick': true
});
});
</script>
关于javascript - $ .jAlert不是函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55084910/