我想在图片上触发点击事件
HTML
<img src="https://www.bux.com/imagens/estrela_16.gif" border="0" height="16" width="16">
如何使用javascript触发图像?
答案 0 :(得分:0)
something done...
$('img[src$="estrela_16.gif"]').click()
答案 1 :(得分:0)
你可以简单地使用jQuery选择器来实现它,如下所示:
$("img[src*='estrela_16.gif']").on('click', function() {
// Do something...
});
如果您想触发点击事件,请执行以下操作:
$("img[src*='estrela_16.gif']").trigger('click');
或更直接:
$("img[src*='estrela_16.gif']").click();
可在此处https://api.jquery.com/attribute-contains-selector/找到更多信息,此处http://api.jquery.com/trigger/