Trying to get the text of an event's target element from an unordered list
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
with code like this
$('ul').click(function() {
theEl=(event.target.text);
});
When I console log
event.target
it returns
<li>Item 1</li>
and
event.target.text
returns undefined
I just want 'Item 1'. I know I have done this before - it must be late...thanks for any assistance :)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…