简体   繁体   English

如何向按钮添加第二个功能?

[英]How do I add a second function to a button?

Say I have a standard HTML link like so: 假设我有一个标准的HTML链接,如下所示:

<a href='https://whateverdomain.com/whatever.pdf' class='pdf-download'>

How can I both link to that .pdf and fire a jQuery function at the same time? 我如何同时链接到.pdf 启动jQuery函数?

I've written this so far: 到目前为止我写过这个:

$('.pdf-download').addEventListener('click', function() {
  $.getJSON('/documents/email', function(email) {
    if (email.documentID && email.message == 'success') {
      console.log('Sending email...');
    };
  },
false);

But that just prevents my button from being clickable. 但这只会阻止我的按钮被点击。 I should mention that that listener is part of a bigger function: 我应该提一下,听众是更大功能的一部分:

function checkForAnswers() {
  var count = $('.pdf-checklist').filter(function() {
    return $(this).val() !== "";
  }).length;
  var total = $('.pdf-checklist').length;

  $('.pdf-download').addEventListener('click', function() {
    $.getJSON('/documents/email_press_ad', function(email) {
      if (email.documentID && email.message == 'success') {
        console.log('Sending email...');
      };
  }, false);

  if (count == total) {
    $('.pdf-download').removeClass('disabled');
    $('.pdf-download').removeAttr('disabled');
  } else {
    $('.pdf-download').addClass('disabled');
    $('.pdf-download').attr('disabled', 'disabled');
  }
  console.log(count + '/' + total);
}

$('.pdf-checklist').on('keyup', checkForAnswers);

You could try just binding it with on 您可以尝试将其与on绑定

$(".pdf-download").on("click", function (e) {
    e.preventDefault();
    //do your stuff.

    //navigate to a click href via window.location
    window.location = $(this).attr('href');
});

So you cancel the click default event and manually force the url change after code is complete. 因此,您取消单击默认事件并在代码完成后手动强制更改URL。

Editted according to comments. 根据评论编辑。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM