摘要: find / -type f ! -path '*/node_modules/*' -name '*.js' -exec grep -l 'v10/exlibs' {} \; 查找文本 参考: https://stackoverflow.com/questions/16956810/how-do-i 阅读全文
posted @ 2019-07-18 20:51 程序媛李李李李蕾 阅读(258) 评论(0) 推荐(0)
摘要: $.click() 触发的事件中没有 event.originalEvent , 不同触发 href="" 中的内容 $[0].click() 可以 <script type="text/javascript"> function clickTest1() { alert("事件1触发"); } f 阅读全文
posted @ 2019-07-18 13:22 程序媛李李李李蕾 阅读(1417) 评论(0) 推荐(0)
摘要: function fuzzysearch (needle, haystack) { var hlen = haystack.length; var nlen = needle.length; if (nlen > hlen) { return false; } if (nlen hlen) { re 阅读全文
posted @ 2019-07-18 12:39 程序媛李李李李蕾 阅读(1369) 评论(0) 推荐(0)