jQuery check if onClick exists on element
I found the way to check if event exists on element. But it's not work on the events which is not delegated by jQuery:
When I try,
$("a").data("events");
for this.
<a href="#" onClick="alert('Hello, World!')" />
It returned und开发者_开发问答efined.
Is there any way to check if onClick
exists on elements with jQuery?
You can do:
if ($('a').attr("onClick") != undefined) {}
Just do:
if( myelement.onclick != null )
{
//onclick exists
}
else
{
//onclick doesn't exist
}
No need for jQuery.
if( $('#elementName').click == undefined)
{ //event handler doesn't exist }
else
{ //handler exists }
I think the following things should also work
if ($(yourElement).attr("onClick").length != 0) {}
if ($(yourElement).attr("onClick").size() != 0) {}
Thanks
For sure there are some valid answers here, this was a good one that got me going.
if ($('a').attr("onClick") != undefined) {}
But I found the best answer for you, as it was for since we are both dealing with hyperlinks, would looking for the href attribute.
if ($('a').attr("href") != undefined) {}
I particularly liked this approach.
精彩评论