作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我一直在尝试制作一个包含 3 个字段的简单应用程序:
<div id = "nameInput" >Name:</div><input id = "nameInputField" type = "text" name = "userName" />
<div id = "emailInput" >Email:</div><input id = "emailInputField" type = "text" name = "email" />
<input id = "termsCheck" type = "checkbox" name = "terms" />
我遇到的问题是,我一直需要尝试将其包装在一个表单中,以使复选框在选中时注册为已选中。我不想使用表格,因为我不想提交任何东西。
这也是复选框的 JS。它始终标记为未选中:
if ($('#terms').checked == true) {
//Rest of code
有没有办法在不使用表单的情况下做到这一点,或者我的复选框从未注册为已选中是否有原因?
最佳答案
<input id = "termsCheck" type="checkbox" name="terms" />
JS:
jQuery 1.6 之前的版本:
if($('#termsCheck').is(':checked')){}
在 jQuery 1.6 之后:
if($('#termsCheck').prop('checked')){}
关于javascript - 如何在没有表单的情况下制作复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6049430/
我是一名优秀的程序员,十分优秀!