“Propagation d'arrêt HTML ONCLICK” Réponses codées

onclick stoppropagation

<span onclick="event.stopPropagation(); alert('you clicked inside the header');">something inside the header</span>
Average Anaconda

Propagation d'arrêt HTML ONCLICK

// "event" is not universally supported, so instead grab the first
// argument passed through the onclick handler and call
// "stopPropagation()" on it
<div onclick="(arguments[0] ? arguments[0].stopPropagation() : false);">...</div>
P. Tune

Réponses similaires à “Propagation d'arrêt HTML ONCLICK”

Questions similaires à “Propagation d'arrêt HTML ONCLICK”

Plus de réponses similaires à “Propagation d'arrêt HTML ONCLICK” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code