本文主要和大家聊聊Jquery的noty彈框應用,需要的朋友可以參考下,希望能幫助到大家。
匯入jar套件(這邊是專案的相對路徑)
<script src='${ctx}/js/noty/jquery.noty.js'></script> <script src='${ctx}/js/noty/themes/default.js'></script> <script src='${ctx}/js/noty/layouts/topCenter.js'></script>
簡單的範例:
if(name=="删除" || name=="登记"){ $("#noty_topCenter_layout_container").remove(); noty({ text: "您真的确定要"+name+"吗?\n\n请确认!", type: 'alert', dismissQueue: true, layout:'topCenter', theme: 'default', buttons: [ { addClass: 'btn btn-primary btn-sm background-blue', text: '确定', onClick: function ($noty) { $noty.close(); formSubmit (url,sTarget); } }, { addClass: 'btn btn-danger btn-sm background-red', text: '取消', onClick: function ($noty) { $noty.close(); } } ] }); }else{ formSubmit (url,sTarget); }
這邊是一個提交跳轉的按鈕,
#加上remoe是為了不能開多個,當你開啟一個彈框的時候關閉另一個彈框;
layout: 'topCenter',這個是改變彈框位子的,要和導入的js名稱相對應;
#自帶樣式有些地方不是很好看,那我們需要修改
那麼如何加彈框呢?在jquery.noty.js中
在彈框的前面加上一個提示:jQuery prepend( ) 方法
樣式的大小或是css直接在網頁上截取
_build : function()下
var $bar = $('<p class="noty_bar"/>').attr('id', this.options.id); $bar.prepend('<p style="padding: 5px; border-bottom:1px #e8e8e8 solid; text-align: left; border-top: 1px solid #e8e8e8; background-color: rgb(255, 255, 255);width: 90%;margin: auto;">提示:</p>'); $bar.append(this.options.template).find('.noty_text').html(this.options.text);
有一條底線,現在把它變成寬度的百分之80,居中
自帶的還有一個底線很難找,不能直接在外面的style中修改,需要在jquery.noty.js中找到
show: function() if (self.options.timeout) self.$bar.delay(self.options.timeout).promise().done(function() { self.close(); }); this.$bar.find('.noty_buttons').css("borderTop","1px solid rgb(220, 220, 220) "); return this; },
背景顏色橫條不好看,在default中修改style: function
中間寬度太小,可以修改margin
如何修改確認,取消,按鈕顏色
在建立他們的地方加上class,然後在引入jsp的頁面加上style
最後的樣式:
以上是淺談Jquery的noty彈框應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!