在javascript中有两个文档,我可以访问其他非文档,我不想在此工作中使用click事件one.js,而仅是我的two.js。

    one.js // I dont have acess

    $(document).ready(function(e){
       $('.contentsummary .actions a').click(function(e){
          $('.contentsummary .items').css('top','2000px');
       );
    });


   two.js // My File JS

  $(document).ready(function(e){
       $('.contentsummary .actions a').click(function(e){
          $('.contentsummary .items').css('top','0');
       );
   });

最佳答案

您只需要在添加事件侦听器之前将其删除:

   $(document).ready(function(e){
       $('.contentsummary .actions a').off('click');
       $('.contentsummary .actions a').on('click', function(e){
          $('.contentsummary .items').css('top','0');
       );
   });

10-06 12:20