要素<p>
内 からテキスト値を取得したい 。<li>
html :
<ul>
<li onclick="myfunction()">
<span></span>
<p>This Text</p>
</li>
</ul>
JavaScript :
function myfunction() {
var TextInsideLi = [the result of this has to be the text inside the paragraph"];
}
これを行う方法?