-
Notifications
You must be signed in to change notification settings - Fork 0
/
jQuery.icheck.php
105 lines (97 loc) · 3.34 KB
/
jQuery.icheck.php
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery iCheck</title>
<link href="vendor/twbs/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="vendor/fronteed/icheck/skins/square/green.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
if(count($_POST)) {
echo '<pre>', print_r($_POST, true), '</pre>';
}
?>
<div class="container">
<form action="jQuery.icheck.php" id="formA" method="post">
<fieldset class="form-group row">
<legend class="col-form-legend col-sm-2">Checkbox</legend>
<div class="col-sm-10">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" checked id="chk1" name="checkbox1" type="checkbox" value="checkbox1">
Check me out </label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" id="chk2" name="checkbox2" type="checkbox" value="checkbox2">
Check me </label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" id="chk3" name="checkbox3" type="checkbox" value="checkbox3" disabled>
Check is disabled </label>
</div>
</div>
</fieldset>
<fieldset class="form-group row">
<legend class="col-form-legend col-sm-2">Radios</legend>
<div class="col-sm-10">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" checked id="gridRadios1" name="radio" type="radio" value="option1">
Check me out </label>
</div>
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" id="gridRadios2" name="radio" type="radio" value="option2">
Check me </label>
</div>
<div class="form-check disabled">
<label class="form-check-label">
<input class="form-check-input" disabled id="gridRadios3" name="radio" type="radio" value="option3">
Check is disabled </label>
</div>
</div>
</fieldset>
<div class="form-group row">
<label class="col-sm-2"></label>
<div class="col-sm-10 text-right">
<button class="btn btn-lg btn-primary" type="submit">Save</button>
</div>
</div>
</form>
<hr>
<button class="btn btn-lg btn-info" id="ajaxBtn" type="button">AJAX Value</button>
</div>
<script src="vendor/components/jquery/jquery.min.js"></script>
<script src="vendor/fronteed/icheck/icheck.min.js"></script>
<script>
$(function () {
/* style */
$('input').iCheck({
"checkboxClass": "icheckbox_square-green",
"radioClass": "iradio_square-green",
});
/* event */
$('input').on('ifChanged', function(event) {
console.log(event);
alert('checked = ' + event.target.checked);
alert('id = ' + event.target.id);
alert('name = ' + event.target.name);
alert('type = ' + event.target.type);
alert('value = ' + event.target.value);
});
/* value */
$('#ajaxBtn').click(function() {
var formData = $('#formA').serializeArray();
var message = '';
$.each(formData, function (index, item) {
message +='\n' + index + ' ' + item.name + ' = '+item.value;
});
alert(message);
});
});
</script>
</body>
</html>