- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个 JavaScript 和 HTML 项目,客户可以在其中单击他们想要完成的服务的复选框,这将增加右侧每项服务的成本。
我目前正在为每个项目使用复选框,并需要它们充当单选按钮的作用。在我的屏幕截图中,客户不能同时在他们的车上安装 CQuartz Finest 套件和 Ceramic Pro Gold 套件。
在意识到当前选中了另一个复选框后,我可以让复选框“取消选中”,但它不会从总数中减去它自己。
如果你能引导我朝正确的方向前进,那就太棒了!我通常使用 HTML5、CSS3、Java 和 C++ 进行编码。我还没有在 JavaScript 方面做过很多工作。
我将屏幕截图发布在这里:https://www.dropbox.com/s/xlkh4vp70sa39wb/what-we-recommend.jpg?dl=0
这是我当前使用的代码:
HTML
<div id="gold-package" class = "one-half-box">
<div class="option-parent"><input id ="ceramicProGoldBox" type="checkbox" name="vehicle" onclick="validateCeramicProGold()" class="paintCoatings"><h2>Ceramic Pro Gold</h2><p style="">$1695.00</p></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro 9H" data-geo="ceramic-pro-9h" href="#">• 4 layers of 9H Glass Shield on all painted exterior surfaces</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Plastic Coating" data-geo="plastic-coating" href="#">• 1 layer of 9H Glass Shield on exterior plastics</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro Wheel & Tire" data-geo="wheel-coating" href="#">• 1 layer of Ceramic Pro Wheel and Caliper Coating on wheels and calipers</a></div>
<div id="tooltip" class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro Rain" data-geo="ceramic-pro-rain" href="#" >• 1 layer of Rain on all windows and glass</a></div>
<div id="tooltip" class="option-child"><a id="paint-correction" title="Paint Correction" data-geo="paint-correction" description="Test Description" href="#" >• Includes 2 stages of Paint Correction</a></div>
</div>
<div class="one-half-box-space"></div>
<div id="cquartz-finest" class = "one-half-box">
<div class="option-parent"><input id ="cquartzFinestBox" type="checkbox" name="vehicle" onclick="validateCquartzFinest()" class="paintCoatings"><h2>CQuartz Finest</h2><p style="">$700.00</p></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro 9H" data-geo="cquartz-finest-paint" href="#">• 2 Layers of CQuartz Finest on all painted exterior surfaces</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro 9H" data-geo="cquartz-finest-plastic" href="#">• 2 Layers of CQuartz Finest on exterior plastics</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro 9H" data-geo="wheel-coating" href="#">• 2 Layers of CQuartz Finest on Wheels & Calipers</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Plastic Coating" data-geo="ceramic-pro-rain" href="#">• 2 Layers of Car Pro Fly By is applied to exterior glass surfaces</a></div>
<div class="option-child"><a id="ceramic-pro-rain" title="Ceramic Pro Wheel & Tire" data-geo="light-cut" href="#">• Includes a Single Stage Paint Correction</a></div>
</div>
JavaScript
<script type="text/javascript">
var totalPrice = 0.00;
var ceramicProGold = 1695.00;
var cquartzFinest = 700.00;
function validateCeramicProGold() {
var elCeramic = document.getElementById('ceramicProGoldOption');
var elCQuartzFinest = document.getElementById('cquartzFinestOption');
var chkboxCeramic = document.getElementById('ceramicProGoldBox');
var chkboxCquartzFinest = document.getElementById('ceramicProGoldBox');
if (chkboxCeramic.checked == false && chkboxCquartzFinest.checked == false)
{
totalPrice = totalPrice + ceramicProGold;
document.getElementById('options').innerHTML += "<li style='list-style-type: none;padding:0;' id='ceramicProGoldOption'>Ceramic Pro Gold</li>";
updatePrice();
}
else if (document.getElementById('ceramicProGoldBox').checked == false)
{
totalPrice = totalPrice - ceramicProGold;
updatePrice();
document.getElementById("ceramicProGoldOption").remove();
}
if(chkboxCquartzFinest.checked == true)
{
//chkboxCQuartzFinest.attr('checked', false);
alert("CQuartz is already checked");
}
else {}
}
function validateCquartzFinest() {
var elCeramic = document.getElementById('ceramicProGoldOption');
var elCQuartzFinest = document.getElementById('cquartzFinestOption');
var chkboxCeramic = document.getElementById('ceramicProGoldBox');
var chkboxCquartzFinest = document.getElementById('ceramicProGoldBox');
if (chkboxCeramic.checked == false)
{
totalPrice = totalPrice + cquartzFinest;
document.getElementById('options').innerHTML += "<li style='list-style-type: none;padding:0;' id='cquartzFinestOption'>CQuartz Finest</li>";
updatePrice();
}
else if (chkboxCquartzFinest.checked == false)
{
totalPrice = totalPrice - cquartzFinest;
updatePrice();
document.getElementById("cquartzFinestOption").remove();
}
if(chkboxCeramic.checked == true)
{
//alert("Ceramic Pro is already checked");
chkboxCeramic.attr('checked', false);
}
else {}
}
function updatePrice()
{
document.getElementById("totalPrice").innerHTML = totalPrice.toFixed(2);
}
$("#ceramicProGoldBox").change(validateCeramicProGold);
$("#cquartzFinestBox").change(validateCquartzFinest);
//$(".paintCoatings").change(function(){$(".paintCoatings").prop('checked',false);$(this).prop('checked',true);});
//Every checkboxes in the page
/*$('#coatings input:checkbox').click(function() {
$('#coatings input:checkbox').not(this).prop('checked', false);
});*/
</script>
最佳答案
由于您已经使用了 JQuery,因此您可以自己使它变得更容易。使用数据属性将相关组信息添加到复选框,并在与特定选择匹配的所有复选框上使用一个更改事件(在本例中,我选取了所有具有 PaintCoatings 类的复选框) )。
当复选框发生更改时,事件将取消选中该组之前选择的所有复选框,并比较内部状态以更新总价(和潜在选项)
我在代码中添加了一些注释,以明确发生了什么
'use strict';
var totalPrice = 0;
function updatePrice(totalPrice) {
$('#totalPrice').html('$' + totalPrice.toFixed(2));
}
function addOption(checkboxItem) {
var s = $(checkboxItem).data('group');
$('#options').append('<li id="' + s + '">' + $(checkboxItem).data('option') + '</li>');
}
function removeOption(checkboxItem) {
var s = $(checkboxItem).data('group');
$('#' + s).remove();
}
function addPrice(checkboxItem) {
totalPrice += parseInt($(checkboxItem).data('price'));
}
function removePrice(checkboxItem) {
totalPrice -= parseInt($(checkboxItem).data('price'));
}
var lastChecked = {};
$('input.paintCoatings').on('change', function(eventSource) {
// target points to the checkbox that got clicked
var sender = eventSource.target;
if (sender) {
// we have the relevant group of data inside data-group
var group = $(sender).data('group');
// select all matching checkboxes of this group
$("[data-group='" + group + "']").each(function(index, checkbox) {
if (checkbox !== sender) {
// and deselect them if they are not the same to this sender
checkbox.checked = false;
}
});
// if this group had a previously selected checkbox
if (lastChecked[group]) {
// remove the price from the total price
removePrice(lastChecked[group]);
// remove the option from the option list
removeOption(lastChecked[group]);
// remove last selected item
delete lastChecked[group];
}
// if the freshly clicked checkbox is checked
if (sender.checked) {
// add the price
addPrice(sender);
// add the option
addOption(sender);
// save it as the currently active one for this group
lastChecked[group] = sender;
}
// update the price
updatePrice(totalPrice);
}
});
.option {
display: inline-block;
float: left;
margin: 4px;
border: solid #a0a0a0 1px;
width: 150px;
padding: 5px;
}
.option h2 {
font-size: 11px;
font-weight: bold;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="totalPrice">0</div>
<div id="options">
</div>
<div class="option">
<input id="ceramicProGoldBox" type="checkbox" data-group="paint" data-price="1695" data-option="Ceramic" name="vehicle" class="paintCoatings">
<label for="cermaicProGoldBox">
<h2>Ceramic Pro Gold</h2>
</label>
<p style="">$1695.00</p>
</div>
<div class="option">
<input id="cquartzFinestBox" type="checkbox" data-group="paint" data-price="700" data-option="Quartz" name="vehicle" class="paintCoatings">
<label for="cquartzFinestBox">
<h2>CQuartz Finest</h2>
</label>
<p style="">$700.00</p>
</div>
<div class="option">
<input id="ceramicProGoldBox" type="checkbox" data-group="wheels" data-price="150" data-option="19 inch wheels" name="vehicle" class="paintCoatings">
<label for="cermaicProGoldBox">
<h2>19"</h2>
</label>
<p style="">$150.00</p>
</div>
<div class="option">
<input id="cquartzFinestBox" type="checkbox" data-group="wheels" data-price="100" data-option="18 inch wheels" name="vehicle" class="paintCoatings">
<label for="cquartzFinestBox">
<h2>18"</h2>
</label>
<p style="">$100.00</p>
</div>
关于JavaScript - 复选框的作用类似于单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35441425/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!