JSFiddle - React, Tailwind, and code Playground
by Zhitao Gong
HTML
<ul>
<li><a onclick="return test();">Parent</a>
<ul>
<li><a onclick="return test();">child</a></li>
</ul>
</li>
</ul>
JavaScript
function test(){
alert('clcik');
return false;
}