- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个单选按钮。当您单击第一个单选按钮(是)时,它有一个下拉菜单,可以打开一个弹出窗口并允许您添加一个盘子。如果用户接受了一个盘子,那么用户就无法改变主意并点击否以取消费用..
用户如何更改车牌和费用变化很好,但我坚持的部分是,如果用户决定他们不想要车牌并且他们单击单选按钮(否),它不会取消费用。 .
我已将其设置为清除下拉选择,但这不包括费用部分。有人可以帮忙吗?
我还添加了该复选框,因为我不希望它仅从下拉选项中完全清除所有费用。
如果有人有任何建议或建议,我们将不胜感激!
var specialFee = 0;
$(function(){ //added by me
$('#IRF').click(function(){
calculateTotal();
});
});
function initialRegFee()
{
var initialFee=0;
var theForm = document.forms["form"];
var iRF = document.getElementById('IRF');
if(iRF.checked==true)
{
initialFee=225;
}
return initialFee;
}
function calculateTotal()
{
var titleFees = initialRegFee();
titleFees += specialFee;
var divobj = document.getElementById('totalPrice');
divobj.style.display='block';
divobj.innerHTML = "Estimated Transfer Fees $"+titleFees;
}
function hideTotal()
{
var divobj = document.getElementById('totalPrice');
divobj.style.display='none';
}
$(function() {
$('#SPECIAL').on('change', function() {
if ($('option:selected', this).is('[data-img]')) {
$('#modal_special').find('.modal-title').html($('option:selected', this).data('name'));
$('#modal_special').find('.modal-body').html('')
.append('<img alt="coming soon" src="' + $('option:selected', this).data('img') + '"/><br/><br/> Would you like to add this license plate for: $' + $('option:selected', this).data('price') + ' ?')
.end().modal('show');
}
});
$('.accept').on('click',function() {
specialFee = $('option:selected').data('price');
calculateTotal();
$('#modal_special').modal('hide');
});
});
function showhideSPForm(SP) {
if (SP == "Yes") {
document.getElementById("div8").style.display = 'block';
document.getElementById("div9").style.display = 'none';
} else if (SP == "No") {
document.getElementById("div9").style.display = 'block';
document.getElementById("div8").style.display = 'none';
document.getElementById("SPECIAL").selectedIndex = 0;
}
calculateTotal();
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<form name="form">
Check if
<input
type="checkbox"
id="IRF"
name='IRF'
/>
<input type="radio" value="Yes" name="SP" id="SP" required="yes" onclick="showhideSPForm(this.value)"/><label for="SP">Yes</label>
<input type="radio" value="No" name="SP" id="noSP" onclick="showhideSPForm(this.value)"/><label for="noSP">No</label>
<div id="div8" style="display:none">
<div class="clearfix">
<select name="SPECIAL" id="SPECIAL">
<option>Please Select</option>
<option
data-name="Animal Friend"
data-img="/images/img/AnimalFriend.png"
data-price="30"
value="1">Animal Friend</option>
<option
data-name="Aquaculture"
data-img="/images/img/Aquaculture.png"
data-price="25"
value="2">Aquaculture</option>
<option
data-name="Protect Our Oceans"
data-img="/images/img/ProtectOurOceans.png"
data-price="20"
value="3">Protect Our Oceans</option>
</select>
<!-- Modal -->
<div class="modal fade" id="modal_special" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Specialty Plate</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary accept">Accept</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="totalPrice"></div>
<div id="div9" style="display:none">
<!---You are not qualified to see this form.--->
</div>
<div id="totalPrice"></div>
</form>
最佳答案
我认为,您没有将 specialFee 重置为 0。
function showhideSPForm(SP) {
if (SP == "Yes") {
document.getElementById("div8").style.display = 'block';
document.getElementById("div9").style.display = 'none';
} else if (SP == "No") {
document.getElementById("div9").style.display = 'block';
document.getElementById("div8").style.display = 'none';
document.getElementById("SPECIAL").selectedIndex = 0;
}
specialFee = 0;
calculateTotal();
}
关于javascript - 单选按钮下拉弹窗费用清零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26551988/
我在用户控件内有一个带有“边框”500x500 的弹出窗口...当用户单击按钮打开此弹出窗口时,我希望边框显示在应用程序的中心(水平/垂直)而不是用户控件。 我该怎么做? 最佳答案 您可以获取根视觉对
我生成的代码有什么问题?我试图让 UIPickerView 在点击文本字段时弹出,然后在做出选择后消失。文本字段应该显示之后选择的内容。 import UIKit class CreateAJob_V
我目前正在开发一个网站。 让我叙述一下我面临的问题: 当用户打开网站时,他们会在一个小弹出窗口中看到两个选项。 弹出窗口中的第一个选项将指向子域 1 弹出窗口中的第二个选项将指向子域 2 现在我的问题
JavaScript 有三种弹窗 Alert (只有确定按钮), Confirmation (确定,取消等按钮), Prompt (有输入对话框),而且弹出的窗口是不能通过前端工具对其进行定位的,这
我希望能够在弹出窗口外单击以使其消失。 此代码运行良好 - 在打开另一个弹出窗口时关闭一个弹出窗口,当然当您再次单击该按钮时它会消失。 var $visiblePopover; $('body').o
我想看看 stackoverflow 是否使用单独的插件来执行那些亮黄色的弹出窗口,上面写着“请考虑将此答案标记为已接受 或“请考虑添加评论以说明您为什么投了反对票” 这是为此使用了一个 jquery
以下样式定义以某种方式破坏了我的屏幕并使 R 类变为红色。看截图here和 here ?android:attr/ratingB
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 4 年前。 Improve this qu
有没有办法绕过下面的IE弹框: The webapge you are viewing is trying to close the window. Do you want to close this
我的 iOS 应用程序出现问题:当我触摸“购买”按钮购买 IAP 产品时,弹出窗口显示此消息: This In-App purchase has already been bought. It wil
我正在 Windows 上学习 OpenCV,我正在使用 Code::bloks。当我调用 imshow() 的函数时,它会显示一个弹出窗口,其中有图像。问题是我无法缩放此窗口,因此看不到像素值。 最
我使用以下前端代码导出 .csv 文档。 HTML {% csrf_token %} DOWNLOAD JS $('#export-link').click(function(e
我是一名优秀的程序员,十分优秀!