| |||||||||||||||
| |||||||||||||||
| |||||||||||||||
| styleButton | Mise en forme d'un bouton | |||||||||
| Syntaxe | styleButton(flag) | |||||||||
| Paramètres |
| |||||||||
| Fonctions util. |
|
| Code Perl |
sub styleButton {local($flag) = @_;
local($bg,$coul);
$bg = $cFond; $coul = $pFond2;
return ' style="background-color:'.$bg.'; color:'.$coul.'"';
}
|
| Code JavaScript |
function styleButton(flag) {
var bg,coul;
bg = cFond; coul = pFond2;
return ' style="background-color:'+bg+'; color:'+coul+'"';
}
|