jQuery 动态生成单选按钮,然后将值传递给继续按钮
我有一个接收 JSON 响应的页面。如果 JSON 中有多个选项,它将根据较大的长度使用 Javascript 中的 for 循环动态生成一些单选按钮。
比如:
for (var i = 0; i < length; i ++){
alert(i);
//draw the HTML radio buttons based on the data i++
}
//value from radio button button gets passed to a continue button
在 jQuery 中做到这一点的最佳方法是什么?
I have a page that receives a JSON response. If there is more than one option in the JSON it will dynamically generate some radio buttons using a for loop in Javascript based on the greater length.
Something like:
for (var i = 0; i < length; i ++){
alert(i);
//draw the HTML radio buttons based on the data i++
}
//value from radio button button gets passed to a continue button
What would be the best way to do that in jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果需要的话,
您必须用表单元素将其包围。顺便说一下,我还没有测试过这个。
Something like
You'll have to surround it with a form element if you need that. I haven't tested this, by the way.