我正在尝试使用jQuery在悬停时触发click事件。
这很简单,但似乎我无法触发使用此方法刷新updatepanel内容的asp.net linkbutton的点击。
这是代码 - 相当标准,所以不确定它会有所作为。
$("a.testbutton").mouseenter( function() {
$(this).trigger('click');
});
有什么想法吗?
答案 0 :(得分:3)
以编程方式触发点击与实际点击事件不同,请尝试以下操作。
$("a.testbutton").mouseenter(function() {
window.location.href = this.href
});
答案 1 :(得分:0)
你试过吗
$("a.testbutton").mouseenter( function() {
$(this).click(function(alert();)) //replace alert(); with your refresh function
});