0

私は jquery noty プラグインを使用しており、誰かがポップアップをクリックすると、URL (以下) に移動したいのですが、これを理解できません...誰かが私に簡単な修正を与えることができます..?

行きたいURL:script.php?hidenoty=true

<script type="text/javascript">
  function generate(layout) {
    var n = noty({
        text: "<?php echo $motd?>",
        type: 'warning',
        dismissQueue: true,
        layout: layout,
        theme: 'defaultTheme',
        animation: {
        open: {height: 'toggle'},
        close: {height: 'toggle'},
        easing: 'swing',
        speed: 500 // opening & closing animation speed
        },
        timeout: false, // delay for closing event. Set false for sticky notifications
        force: false, // adds notification to the beginning of queue when set to true
        modal: false,
        maxVisible: 3, // you can set max visible notification for dismissQueue true option
        closeWith: ['click'], // ['click', 'button', 'hover']
        callback: {
        onShow: function() {},
        afterShow: function() {},
        onClose: function() {
        $.ajax({ url: 'script.php?hidenoty=true' });
        },
        afterClose: function() {}
        },
        buttons: false // an array of buttons
    });
        console.log('html: '+n.options.id);
  }

  function generateAll() {
    generate('topCenter');
  }

  $(document).ready(function() {

        generateAll();

  });
</script>
4

1 に答える 1