I am using iCheck for checkbox and below checkbox selection html,
<input type="checkbox" name="allDay" id="allDay" class="icheck" data-checkbox="icheckbox_minimal-red" value="true"> All day event</label>
I am submitting form using Ajax, but not with .serialize()
function, i am taking individual form entry as .val()
and then do some manipulation on entry and then pass as variable in form ajax data,
Now i want to pass value for checkbox if its selected, otherwise it should not pass any value,
I have below code for taking value for variable,
allDay = $('#allDay').val();
But with this, it always pass value = true even if its checked
or unchecked
.
How can i pass value of checkbox to variable only if it checked?
Thanks,
I am using iCheck for checkbox and below checkbox selection html,
<input type="checkbox" name="allDay" id="allDay" class="icheck" data-checkbox="icheckbox_minimal-red" value="true"> All day event</label>
I am submitting form using Ajax, but not with .serialize()
function, i am taking individual form entry as .val()
and then do some manipulation on entry and then pass as variable in form ajax data,
Now i want to pass value for checkbox if its selected, otherwise it should not pass any value,
I have below code for taking value for variable,
allDay = $('#allDay').val();
But with this, it always pass value = true even if its checked
or unchecked
.
How can i pass value of checkbox to variable only if it checked?
Thanks,
Share Improve this question edited Jul 21, 2016 at 9:22 sebaferreras 44.7k11 gold badges119 silver badges137 bronze badges asked Jul 21, 2016 at 8:43 rjcoderjcode 1,3471 gold badge27 silver badges64 bronze badges1 Answer
Reset to default 8You can use :checked
selector:
allDay = $('#allDay:checked').val();
or instead you can use .is()
too if you are looking for default value:
allDay = $('#allDay').is(':checked'); // "true" if checked | "false" on unchecked;
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745160192a4614355.html
评论列表(0条)