选择器可以获取包含onclick属性的图片
在 onclick 中有一个 JS 代码( windows.open ....href 以 (/dailyTickets/front/requesttype.form.php) 开头)
我想要这样的东西:
var attr = $('img').attr('onclick');
if(typeof attr !== 'undefined' && attr !== false)
{
$ImgIndex = $('img').attr('onclick').value().indexOf("var w = window.open('/dailyTickets/front/requesttype.form.php").index();
if ($('img').attr('onclick').value().indexOf("var w = window.open('/dailyTickets/front/requesttype.form.php") == 0)
{
$('img:eq('"+$ImgIndex +"').hide();
}
}
你可以在这里测试它:http: //jsfiddle.net/zu44E/3/
这是图像:
<img
alt=""
title="Ajouter"
src="/dailyTickets/pics/add_dropdown.png"
style="cursor:pointer; margin-left:2px;"
onclick="var w = window.open('/dailyTickets/front/requesttype.form.php?popup=1&rand=1489777051', 'glpipopup', 'height=400, width=1000, top=100, left=100, scrollbars=yes' );w.focus();"
></img>