Json对象条件
我想使用 AND 条件创建一个 Json 对象(我不知道是否可能)。我把目前未完成的代码放在了这里。
var parameters = {
Title : "hello",
Text : "world",
Question : //if two checkboxes are checked then true else false.
}
关于选中的两个复选框,我正在考虑使用这个:
$('.checkbox1').is(':checked') && $('.checkbox2').is(':checked')
我想避免的是放置一个 if ,比如
//if checkboxes are checked
//{
//create the json object of type 1
//}
//else
//{
//create the json object of type 2
//}
这可能吗?
i would like to create a Json object using an AND condition (i dont know if its possible). I put the unfinished code that i've by the moment.
var parameters = {
Title : "hello",
Text : "world",
Question : //if two checkboxes are checked then true else false.
}
About the two checkboxes checked i was thinking to use this:
$('.checkbox1').is(':checked') && $('.checkbox2').is(':checked')
What i would like to avoid is to put an if like
//if checkboxes are checked
//{
//create the json object of type 1
//}
//else
//{
//create the json object of type 2
//}
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,布尔值就可以了:
这将创建一个常规的 JavaScript 对象,您可以像任何其他对象一样操作它,例如,
甚至:
根据 JSON 定义,生成的 JSON 应如下所示:
Yes, a boolean would be ok:
This will create a regular JavaScript object which you can manipulate like any other object, e.g.,
Or even:
According to the JSON definition, the resulting JSON should look like: