1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
| <!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="Author" content="Daniel Hagnoul">
<title>Forum jQuery</title>
<style>
/* Base */
div,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,form,table,img {margin:0px; padding:0px; }
body {background-color:#dcdcdc; color:#000000; font-family:sans-serif; font-size:medium; font-style:normal; font-weight:normal; line-height:normal; letter-spacing:normal; }
h1,h2,h3,h4,h5 {font-family:serif; padding:6px; }
p, div, td {word-wrap:break-word; }
pre, code {white-space:pre-wrap; word-wrap:break-word; }
img, input, textarea, select {max-width:100%; }
img {border:none; }
h1 {font-size:2em; text-shadow: 4px 4px 4px #bbbbbb; text-align:center; }
p {padding:6px; }
ul,ol,dl {list-style:none; padding-left:6px; padding-top:6px; }
li {padding-bottom:6px; }
.conteneur {width:95%; min-width:800px; min-height:400px; margin:12px auto; background-color:#FFFFFF; color:#000000; border:1px solid #666666; }
/* -- */
</style>
</head>
<body>
<h1>Forum jQuery</h1>
<section class="conteneur">
<form>
<label>Win : </label><input id="winCheck" type="checkbox"/> <label>Mac : </label><input id="macCheck" type="checkbox"/><br/>
<label>Window :</label><input id="winText" type="text" disabled="disabled"/><br/>
<label>Macintosh :</label><input id="macText" type="text" disabled="disabled"/><br/>
</form>
<button id="btnEtat">Etat du formulaire</button>
</section>
<footer itemscope itemtype="http://data-vocabulary.org/Person">
<!-- Date ISO format long US : aaaa-mm-qqThh:mm:ss.nnn+hh:mm -->
<time datetime="2011-05-28T22:40:00.000+02:00" pubdate>2011-05-28</time> <span itemprop="name">Daniel Hagnoul</span> <a href="http://www.developpez.net/forums/u285162/danielhagnoul/" itemprop="url">@danielhagnoul</a>
</footer>
<script charset="utf-8" src="http://code.jquery.com/jquery-1.6.min.js"></script>
<script>
$(function(){
var objWin ={
label: "Win",
checked: false,
texte: "",
toString: function(){
var result = this.label;
if (this.checked){
result += ' est sélectionné, son texte est : "' + this.texte + '".'
} else {
result += ' n\'est pas sélectionné.'
}
return result;
}
};
var objMac = {
label: "Mac",
checked: false,
texte: "",
toString: function(){
var result = this.label;
if (this.checked){
result += ' est sélectionné, son texte est : "' + this.texte + '".'
} else {
result += ' n\'est pas sélectionné.'
}
return result;
}
};
$("#btnEtat").click(function(){
console.log(objWin.toString() + "\n" + objMac.toString());
});
$("#winCheck").change(function(){
var bool = $(this).prop("checked");
if (bool){
$("#winText").prop("disabled", false);
} else {
$("#winText").val("").prop("disabled", true);
}
objWin.checked = bool;
});
$("#macCheck").change(function(){
var bool = $(this).prop("checked");
if (bool){
$("#macText").prop("disabled", false);
} else {
$("#macText").val("").prop("disabled", true);
}
objMac.checked = bool;
});
$("#winText").change(function(){
objWin.texte = $(this).val();
});
$("#macText").change(function(){
objMac.texte = $(this).val();
});
});
</script>
</body>
</html> |