Javascript code disappears after button click(单击按钮后Javascript代码消失)
问题描述
我正在尝试制作小计计算工具,但我无法继续,因为我不知道问题出在哪里.提交表单或单击按钮后,一切都很快消失了.
I'm trying to make a sub-total calculation tool, but I can't continue because I don't know what the problem is. When the form is submitted, or the button is clicked, everything quickly disappears.
这是小提琴 :: http://jsfiddle.net/xFmBK/
我一无所知...
function calcSub(){
var input = document.getElementById('fld'),
subTotal = document.getElementById('sub-total'),
tax = document.getElementById('tax'),
total = document.getElementById('total');
var subTotalCalc = input.value / 1.06;
var flag = true;
if(input.value == "" || input.value == null){
alert("Please enter in a total!");
return false;
} else {
subTotal.innerHTML = "Subtotal:" + " " + "$" + subTotalCalc;
tax.innerHTML = "Tax:" + " " + "$" + input.value - subTotalCalc;
total.innerHTML = input.value;
return flag;
}
}
推荐答案
发生这种情况是因为您的提交按钮实际上在某些操作上执行了表单提交,并且页面正在刷新.有一些方法可以修复行为,例如:
That happens because your submit button actually does a form submit on some action and page is being refreshed. There are some ways to fix behavior, such as:
让你的提交按钮只是一个按钮:<input type="button">
实际上您似乎不需要那里的表格
make your submit button just a button: <input type="button">
actually doesn't seem you need a form there
或将 return false 添加到 onClick 处理程序:
or add return false to onClick handler:
<button type="submit" onclick="calcSub(); return false;">Calculate</button><br>
这篇关于单击按钮后Javascript代码消失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:单击按钮后Javascript代码消失
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01