我试图让 jQuery 在加载选项卡时模拟单击 ckFinder 的刷新按钮。无论我使用什么代码,点击都不会注册/提醒。使用 Firebug,我抓取了刷新按钮源:
<a onclick="window.parent.CKFinder._.callFunction(3, this); return false;"
onfocus="window.parent.CKFinder._.uiButtonFocus(1, event);"
onkeydown="window.parent.CKFinder._.uiButtonKeydown(1, event);"
onblur="this.style.cssText = this.style.cssText;" aria-labelledby="cke_10_label"
role="button" hidefocus="true" tabindex="-1" title="Refresh"
href="javascript:void('Refresh')" class="cke_button_refresh cke_off" id="cke_10" style="">
<span class="cke_icon"></span>
<span class="cke_label" id="cke_10_label">Refresh</span></a>
我已经尝试了以下代码示例,甚至去根/通用标签,这不起作用。
$('span').click(function(){
var t = $(this).text();
alert(t);
});
$("#cke_10").click(function() { alert('cke_10'); });
$("a").click(function() { alert('a click'); });
$("a#cke_10").click(function() { alert('a cke click'); });
$("#cke_10_label").click(function() { alert('cke label'); });
$("span#cke_10_label").click(function() { alert('span cke label'); });
任何人都有任何运气让刷新按钮在单击时发出警报?