“Beri tahu JS” Kode Jawaban

Beri tahu JS

$.notify("Hello World");
Gorgeous Gaur

Beri tahu JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

Beri tahu JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5,
  button: 'Ok'
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

Beri tahu JS

$.notify("BOOM!", "error");
Mountain Goat

Beri tahu JS

//add a new style 'foo'
$.notify.addStyle('foo', {
  html: 
    "<div>" +
      "<div class='clearfix'>" +
        "<div class='title' data-notify-html='title'/>" +
        "<div class='buttons'>" +
          "<button class='no'>Cancel</button>" +
          "<button class='yes' data-notify-text='button'></button>" +
        "</div>" +
      "</div>" +
    "</div>"
});

//listen for click events from this style
$(document).on('click', '.notifyjs-foo-base .no', function() {
  //programmatically trigger propogating hide event
  $(this).trigger('notify-hide');
});
$(document).on('click', '.notifyjs-foo-base .yes', function() {
  //show button text
  alert($(this).text() + " clicked!");
  //hide notification
  $(this).trigger('notify-hide');
});
Depressed Dog

Beri tahu JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5,
  button: 'Ok !'
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

Jawaban yang mirip dengan “Beri tahu JS”

Pertanyaan yang mirip dengan “Beri tahu JS”

Lebih banyak jawaban terkait untuk “Beri tahu JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya