1
solodxg 2014-06-22 23:33:37 +08:00 4
|
2
alexapollo OP @solodxg 好东西,就是慢了点……
|
3
wssgcg1213 2014-06-23 00:23:04 +08:00 via iPad
鼠标点击 click事件?
chrome自带的developer tool里面 选中节点之后 可以在event listener里面找到某个事件绑定的函数 |
4
alexapollo OP @wssgcg1213 没看懂click对应的事件,写的是jQuery函数,好像没写实际触发的函数?
实际触发的函数好像是这个: function (D){if($("#fm-sidebar").hasClass("open")){B(["send","event","Button","clicked","Hide Explore Panel"]);C("close")}else{B(["send","event","Button","clicked","Show Explore Panel"]);C("open")}} |
5
chairuosen 2014-06-23 00:43:25 +08:00
@alexapollo 在jquery的click上打断点,看调用栈就知道了
|
6
jsonline 2014-06-23 00:49:00 +08:00
var C = function(D) {
if (D == "close") { $.event.trigger("HIDE_SCROLLBAR"); $("#fm-sidebar").animate({width: 26}, 500, function() { $("#fm-sidebar").toggleClass("open"); j() }) } else { if (D == "open") { $.event.trigger("SHOW_SCROLLBAR"); $("#fm-sidebar").animate({width: 674}, 500, function() { $("#fm-sidebar").toggleClass("open"); j() }) } else { if (D == "init") { $.event.trigger("SHOW_SCROLLBAR"); $("#fm-sidebar").animate({width: 674}, 500) } } } if (!$("#fm-sidebar").hasClass("open")) { k(); $("#fm-channel-list").css("overflow-y", "hidden"); unbindPlayerListMW(); $.event.trigger("START_SCROLLSTATUS") } else { if (l) { clearInterval(l) } $("#fm-channel-list").css("overflow-y", "auto"); $.event.trigger("STOP_SCROLLSTATUS"); bindPlayerListMW() } }; 确认是 jQuery 的 animate |
7
jsonline 2014-06-23 00:50:53 +08:00 1
调试办法:
1. 在 elements 面板选中 <div id="fm-sidebar" 2. 右键 Break on ... -> Attributes modifications 3. 触发事件 4. 遇到压缩的代码就格式化之。 |
8
jsonline 2014-06-23 00:54:08 +08:00
jQuery的animate跨平台兼容性真的是毋庸置疑的呀,jQuery 火的主要原因就是兼容性好,以及API优雅。
不知道你为什么觉得兼容性不好,遇到什么 bug 了? |
9
jsonline 2014-06-23 00:56:21 +08:00 1
接7楼 忘了说
5. 注意观察调试窗口的 Call Stack。 |
11
alexapollo OP |
13
Epsil0n9 2014-06-23 05:07:43 +08:00
希望FIREFOX也能有类似扩展。。。
|