gpt4 book ai didi

javascript - jQuery 中的通知

转载 作者:行者123 更新时间:2023-12-01 05:39:14 24 4
gpt4 key购买 nike

当我在我的index.html中添加此通知时,我的通知显示得很好

<html>
<body>
<div id = "notifications">
<div class= "notification">
<div class="left">
<div class="icon">&#x2713;</div>
</div>
<div class="right">
<h2>Titre</h2>
<p>Une description</p>
</div>
</div>
</div>
</body>
</html>

我尝试将其放入名为 jquery.notif.js 的 jQuery 脚本中

(function($){

$.fn.notif = function(options){

var options = $.extend({
html : ' <div class= "notification">\
<div class="left">\
<div class="icon">&#x2713;</div>\
</div>\
<div class="right">\
<h2>Titre</h2>\
<p>Une description</p>\
</div>\
</div>'
}, options);

console.log(options);

return this.each(function(){

MyFutureCode

})

}

$('body').notif({title:'Mon titre', content:'Mon contenu', icon:'&#x2713;'})

})(jQuery);

我还更改了 index.html 以添加这些行

<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.notif.js"></script>

但是屏幕上什么也没有出现。我尝试 console.log(options) 并且它有效。我有我的对象

最佳答案

您需要将 html 内容附加到调用它的元素

(function($) {

$.fn.notif = function(opts) {

var options = $.extend({
title: 'Titre',
content: '',
icon: '&#x2713;'
}, opts);


var html = options.html || '<div class= "notification">\
<div class="left">\
<div class="icon">' + options.icon + '</div>\
</div>\
<div class="right">\
<h2>' + options.title + '</h2>\
<p>' + options.content + '</p>\
</div>\
</div>';

this.append(html); //or preprend

return this.each(function() {

//MyFutureCode

})

}

$('body').notif({
title: 'Mon titre',
content: 'Mon contenu',
icon: '&#x2713;'
})

})(jQuery);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

关于javascript - jQuery 中的通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31914241/

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