我需要模拟自动点击匹配元素(链接),但我也想在同一行添加点击行为逻辑,这可能吗?类似于alert("my Click Behavior");
代替以下内容:
jQ('tbody[groupstring^=";#Emergency;#"] a').click(function(){
jQ(this).parent().parent().parent().next().find('td:contains("Emergency")').each(function(){
jQ(this).html(jQ(this).html().replace(/Emergency/g,"Urgent"));
});
})
我想将上面的点击行为直接链接到下面:
jQ('tbody[groupstring^=";#Emergency;#"] a').each(function(){
jQ(this).trigger('click').My Click Behavior();
})
这就是定义点击行为的方法
jQ('tbody[groupstring^=";#Emergency;#"] a').each(function(){
jQ(this).click(function() {
//what should happen on click
});
})
这就是如何为许多元素定义相同的点击行为:
jQ('tbody[groupstring^=";#Emergency;#"] a').click(function() {
//what should happen on click
});
这就是你触发点击的方式:
$(mySelector).click();