Cette traduction est incomplète. Aidez à traduire cet article depuis l'anglais.
Cette fonction est expérimentale
Puisque cette fonction est toujours en développement dans certains navigateurs, veuillez consulter le tableau de compatibilité pour les préfixes à utiliser selon les navigateurs.
Il convient de noter qu'une fonctionnalité expérimentale peut voir sa syntaxe ou son comportement modifié dans le futur en fonction des évolutions de la spécification.
The Document.onselectionchange
property represents the even handler that is called when a selectionchange
event reaches this object.
Syntax
obj.selectionchange = function;
function
is the name of a user-defined function, without the () suffix or any parameters, or an anonymous function declaration.
Example
document.onselectionchange = function() { console.log("Selection changed!"); };
Specifications
Specification | Status | Comment |
---|---|---|
Selection API La définition de 'Document.onselectionchange' dans cette spécification. |
Version de travail | Initial definition. |
Browser compatibility
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 43 (43) | ?[2] | ?[3] | ? | ?[4] |
Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
onselectionchange |
43.0 (43)[1] | ?[5] | ? | ? | ? |
[1] This is implemented behind the dom.select_events.enabled
preference, that default to false
, except on Nightly.
[2] Tested 12/05/2015 (Version 46.0.2490.86 m) : onselectionchange seen in document, event functions
[3] Tested 12/05/2015 (Version IE-11.0.9600.18097) : onselectionchange seen in document, event functions
[4] Tested 12/05/2015 (Version 5.1.7 (7534.57.2)) : onselectionchange seen in document, event functions
[5] Tested 12/05/2015 (Chrome Android 4.4.2 Version : 46.0.2490.76) : onselectionchange seen in document, event functions (but any touch changeselection even on buttons - empty selection - while on windows PC click on buttons doesn't "unselect")