在下面的示例中,我試圖通過單擊notify.js API高級示例中的暗示按鈕來強制關閉打開的通知,如何完成此操作?如何以編程方式關閉notify.js通知?
function CLOSE() {
$('#btn').trigger('notify-hide');
}
$(document).ready(function() {
$('#btn').notify('test note', {
position: 'right'
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.js"></script>
<button onClick="CLOSE()" id="btn" class="tst">Test</button>
看起來並不像它支持它。你可以添加它併發送一個拉取請求。 –