unchecking checkbox

I'm using angularjs as much as possible - I'm editing some legacy system and I cannot afford to change too much. So, basically, I need to implement a function that unchecks every checkbox in the page. The easiest solution - without changing too much of the existing system - was to use angular.element . Now I know, this is a REALLY bad solution, but I need to make it work. Currently,

取消选中复选框

我尽可能使用angularjs - 我正在编辑一些遗留系统,我无法承受太多变化。 所以,基本上,我需要实现一个不检查页面中每个复选框的函数。 最简单的解决方案 - 不改变现有系统太多 - 是使用angular.element 。 现在我知道,这是一个非常糟糕的解决方案,但我需要使其工作。 目前,它至少可以工作(因为每个复选框都会被取消选中),但是在另一次点击复选框不起作用 - 它需要按两次,才能再次激活。 下面是一个演示如何实现

Uncheck a checkbox in dat.gui

When I change the option of a dropdown menu, I want all the checkboxes to be unchecked. Here's the code that I put inside a function that's called when the dropdown menu changes: var inputs = document.getElementsByTagName("input"); for(var i = 0; i < inputs.length; i++) { if(inputs[i].type == "checkbox") { inputs[i].checked = false; } } This does indeed unchec

取消选择dat.gui中的复选框

当我更改下拉菜单的选项时,我想要取消选中所有复选框。 下面是我放入一个函数的代码,当下拉菜单发生变化时调用该函数: var inputs = document.getElementsByTagName("input"); for(var i = 0; i < inputs.length; i++) { if(inputs[i].type == "checkbox") { inputs[i].checked = false; } } 这确实取消选中该复选框。 但是,要重新检查复选框,需要两次点击。 看起来,dat.gui仍然认为复选框

Check/Uncheck checkbox with JavaScript?

如何使用JavaScript或jQuery检查/取消选中复选框? Javascript: // Check document.getElementById("checkbox").checked = true; // Uncheck document.getElementById("checkbox").checked = false; jQuery (1.6+): // Check $("#checkbox").prop("checked", true); // Uncheck $("#checkbox").prop("checked", false); jQuery (1.5-): // Check $("#checkbox").attr("checked", true); // Uncheck $("#checkbox").attr("

使用JavaScript检查/取消选中复选框?

如何使用JavaScript或jQuery检查/取消选中复选框? 使用Javascript: // Check document.getElementById("checkbox").checked = true; // Uncheck document.getElementById("checkbox").checked = false; jQuery(1.6+): // Check $("#checkbox").prop("checked", true); // Uncheck $("#checkbox").prop("checked", false); jQuery(1.5-): // Check $("#checkbox").attr("checked", true); // Uncheck $("#checkbox

How to submit unchecked checkbox also

If checkbox is not checked, clicking on form submit button does not submit any data. Some checkboxes may be not present in form depending on form fields selected by user. So submit controller has no possibility to determine if the unchecked checkbox was present in form or not. If database contains true for this column, this property is not updated to false. Checkbox name is same as database

如何提交未选中的复选框也

如果未选中复选框,则单击表单提交按钮不会提交任何数据。 根据用户选择的表单域,某些复选框可能不在表单中。 因此,提交控制器无法确定未选中的复选框是否存在于表单中。 如果数据库对此列包含true,则此属性不会更新为false。 复选框名称与数据库布尔列名称相同。 如果复选框没有被选中,但是如果复选框不存在于表单中,如何强制表单提交处于未选中状态的复选框或者任何其他想法将数据库中的值设置为false? jquery

Jquery check and uncheck checkbox with a link

I am trying to dynamically check and uncheck a box with jquery . The ideal situation would be that if edit project file was clicked this would show the field to upload a new image (edit_project_image) was active ie not removed via either a click again on (edit_project_image) or a click on (remove_edit_image) . Also if there is a strikethough, which would me that the class remove_project_image

Jquery通过链接检查并取消选中复选框

我试图动态检查并取消选中与jquery框。 理想的情况是,如果编辑项目文件被点击,这将显示上传新图像的域(edit_project_image)是活动的,即不是通过再次点击(edit_project_image)或点击(remove_edit_image)被删除。 此外,如果有一个strikethough,这将使我类remove_project_image将被添加,然后复选框也将被检查。 这个想法是,如果上述任何一个都是真的,那么当前活动图像需要被移除。 这里是我的jquery现在: //show hi

Marionette.js compared to Chaplin.js

I currently in the process of concepting a large single page web application. There will be a lot of components, so a separation of concerns is important to me. The Server is basically a REST-Server with some sugar, like sending Template Code to the client. So I need to decide which MVC Framework I want to use client side. I really like backbone.js so I want to have a big Framework relying

Marionette.js与Chaplin.js相比

我目前正在构思一个大型单页网络应用程序。 会有很多组件,所以关注的分离对我来说很重要。 服务器基本上是一个带糖的REST服务器,比如发送模板代码给客户端。 所以我需要决定使用哪个MVC框架客户端。 我真的很喜欢backbone.js,所以我想要一个依赖它的大框架。 我过来的是Marionette.js和Chaplin.js。 有没有人使用过一个或两个框架,并可以对它们进行一点说明? 它的优势,劣势,社区还是基本相同? 这不应该是讨

Google maps directions API redirecting to map.google.com

I have used a bit of JavaScript to get directions on my Google Map, but for some reason I keep getting redirected away to the Google maps page. The problem is when I try to get walking directions mainly, although it also happens with public transport option. This is an app working within PhoneGap, although I'm not sure this is an issue with PhoneGap. Has anybody seen this issue before,

Google将方向API重定向到map.google.com

我使用了一些JavaScript来获取我的Google地图上的路线,但出于某种原因,我一直将其重定向到Google地图页面。 问题是我主要尝试获取步行路线时,尽管它也发生在公共交通工具选项中。 这是一个在PhoneGap中工作的应用程序,虽然我不确定这是PhoneGap的问题。 以前有没有人看到过这个问题,或者有谁能看到我的实现问题? // get drections directions: function (method) { // set directions method method =

Custom Credit Card number lengths

I'm working on a pizza website for school. Here's the question I need to answer. *Allow users to choose from three types of credit card: Visa, MasterCard and American Express. Based on the type of credit card, limit the length of the credit card number, 16 digits for Visa and MasterCard, 15 digits for American Express. * Currently, the page is setup so the user chooses whether he o

自定义信用卡号码长度

我正在为一所学校的比萨网站工作。 这是我需要回答的问题。 *允许用户从三种类型的信用卡中选择:Visa,MasterCard和American Express。 根据信用卡类型,限制信用卡号码的长度,Visa和MasterCard为16位数字,American Express为15位数字。 * 目前,该页面被设置为使得用户选择他或她想要在拿起披萨时付费还是使用信用卡在线付款。 当检查在线辐射盒时,会出现更多具有信用卡名称的辐射盒。 html代码 <p> Payme

Credit card prediction in Javascript

I'm writing a tool that onkeydown will run the current value being entered in an input box to check to see if it matches a regex for one of the 4 major types of credit cards. I feel like it kind of works, but it's flaky so I wanted to figure out what was causing it to give faulty response (eg sometimes it'll output 2 values instead of one). Is it because I need to set a flag variab

Javascript中的信用卡预测

我正在写一个工具,onkeydown将运行输入框中输入的当前值,以检查它是否与四种主要类型的信用卡之一的正则表达式相匹配。 我觉得它有些作品,但它很脆弱,所以我想弄清楚是什么导致它给出错误的反应(例如,有时它会输出2个值而不是1个)。 是因为我需要在循环之前设置一个标志变量? 在匹配正确的卡后,我只是从循环中通过对象返回,所以我认为这足够了... 正则表达式的标准是从这个网站中提取的: Visa : ^4[0-9]{12}

RegEx and Keyup for Credit Card Detection

I'm not receiving the correct output from the credit card detection jQuery I've put together. The keyup event calls a function, creditCardTypeFromNumber(num), and the credit card type is supposed to be detected. Unfortunately, the only thing that is returned is 'UNKNOWN' no matter what value is typed in. I've used 6011 (discover), 5155 (MasterCard), and 4147 (Visa), none of

用于信用卡检测的RegEx和Keyup

我没有收到我放在一起的信用卡检测jQuery的正确输出。 keyup事件调用函数creditCardTypeFromNumber(num),并且应该检测信用卡类型。 不幸的是,无论输入什么值,唯一返回的是'UNKNOWN'。我使用了6011(发现),5155(万事达卡)和4147(Visa),其中没有一个可行。 我在帖子中使用了每个信用卡类型的RegEx: 如何根据数字检测信用卡类型? 我把这两个功能放在一起,基于这里所做的: jquery找到信用卡类型