子供の代わりに親のdivだけを選択する可能性があるかどうかを知りたいと思います。簡単な例として、このようになります:Event.target。子供の代わりに親を選択
<!DOCTYPE html>
<html>
<body onclick="myFunction(event)">
<div style="border: solid black 2px">
<p>Click on a paragraph. An alert box will alert the element
that triggered the event.</p>
<p><strong>Note:</strong> The target property returns the element that
triggered the event, and not necessarily the eventlistener's element.</p>
</div>
<script>
function myFunction(event) {
alert(event.target.nodeName);
}
</script>
</body>
</html>
は、私が欲しいものは、私は(それがPラベル上にある場合は気にしない)、DIVをクリックしてdiv要素がクリックされたMSGを受け取るしたい、簡単です。 pラベルをクリックすると、p msgが表示されます。
実際、pラベルの代わりにdivを選択しようとしています。たとえば、すべての色を変更するなどです。皆さん、ありがとうございました。
http://stackoverflow.com/questions/2728252/jquery-stoppropagation-bubbleを試みることができますまたはあなたはpタグのポインタイベントを削除するためにCSSを使うことができます – Pete