我为<li>
创建了事件处理函数,我需要为每个li编写onclick函数,但我想创建事件<ul>
。
为此,我提到了这个链接
How to get the ul li values using Javascript
但在我的情况下,我使用面向对象的流程,并且我已经将对象传递给函数但是函数没有被调用。
对于Ex:
var handler = {
showMessage:function(elementObj){
alert("Function called"); // But this function is not calling
}
};
&#13;
<ul id="language" onclick="handler.showMessage({element:this,event:event});">
<li>PHP</li>
<li>ASP</li>
<li>JAVA</li>
<li>CQ5</li>
</ul>
&#13;