标签: github
正如标题所述,在github中,如何基于代码历史记录版本中的注释内容进行搜索。
我尝试过 $("#container").on('mousedown.something', function(event) { if($(event.target).is('#container')) { event.preventDefault(); // some other code } }); ,但这只会返回问题中的相关评论。
$("#container").on('mousedown.something', function(event) { if($(event.target).is('#container')) { event.preventDefault(); // some other code } });