如果选中复选框,如何将下拉列表设置为“if...AND...”上的必填字段jquery 中的条件?
我需要解决这个问题:
当勾选复选框(“Session1”)时,应从下拉列表中填充“选择”列表(“课程”),条件是“复选框”被选中/“true”并且“选择列表”为空,则应填充“选择列表”。反之亦然。
现在我的表单中有这个 jquery 代码:
$("#Session1").click(function () {
{
if($("#Session1").attr("checked")==true)
{
alert("Course field is required");
}
}
});
非常感谢您的帮助!
I need to solve this problem:
When a checkbox ("Session1") is ticked, then a "Select" list ("Course") should be filled from a dropdown list on condition that if "checkbox" is checked/"true" AND "select list" is empty, then the "select list" should be filled. And vice versa.
Right now I have this jquery code in my form:
$("#Session1").click(function () {
{
if($("#Session1").attr("checked")==true)
{
alert("Course field is required");
}
}
});
Thank you so much for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
演示: http://jsfiddle.net/AlienWebguy/n4xZU/
要强制启用所需的复选框,只需选中如果需要:
演示:http://jsfiddle.net/AlienWebguy/n4xZU/2/
Demo: http://jsfiddle.net/AlienWebguy/n4xZU/
To force a required checkbox, simply check if it's required:
Demo: http://jsfiddle.net/AlienWebguy/n4xZU/2/
这是您可以使用的东西,您只需要做一些工作即可根据您想要的任何逻辑填充下拉列表。
Here is something you can use, you just need to do the leg work to make the dropdown list to populate based on whatever logic you want.