Javascript: get element's current "onclick" contents
I have a page with the following code:
<a id="test" href="someurl" onclick="somefunction">link</a>
I need to actually read the 'onclick' data. As such, I would like something to the effect of
alert(document.getElementById('test').onClick)
Sadly, it returns undefi开发者_如何学JAVAned
. What do I need to do to get somefunction
?
Assuming the tag is well-formed, a tag's attribute can be obtained via Element.getAttribute
.
document.getElementById('test').getAttribute('onclick')
// -> "somefunction"
You should try:
document.getElementById('test').onclick.toString()
You can use Javascript on anchor tag like:
<script type="text/javascript">
function testClick(id)
{
alert(id);
}
</script>
<a href="#" id="test" onclick="testclick(this.id);">Click</a>
精彩评论