javascript - Pass value of checkbox to variable only if it checked - Stack Overflow

I am using iCheck for checkbox and below checkbox selection html,<input type="checkbox" na

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 badges
Add a ment  | 

1 Answer 1

Reset to default 8

You 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条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信