我正在用PHP制作一个计算器。我遇到麻烦的一个问题就是这个。
<input type="button" name="insert" value="0" style="width: 30px; height: 35px" onClick="zeroCheck()">
因此,如果文本字段只包含“0”,我希望将其替换为另一个而不是在其上添加另一个“0”。
我的文本域名称称为条目。
我尝试开发此功能以解决此问题无济于事。
function zeroCheck(){
if (entry.value == '0'){
entry.value=='0';
} else{
return entry.value+='0';
}
}
这根本没有做任何事情。我在这做错了什么?
如果有人能提供帮助,我们将不胜感激。
答案 0 :(得分:2)
好吧,因为这已经从我的想法发生了巨大变化,让我们在这里明确一点,让我们简化这个过程。如果函数是在PHP中,那么您将无法设置,甚至无法设置input
控件的值。在PHP文件中你需要做这样的事情(请注意我假设form
是POST
):
$entryVal = $_POST["entry"];
$newEntryVal = "0";
if (trim($entryVal) != "0") {
$newEntryVal = $newEntryVal + "0";
}
然后在标记中向下:
<input type="text" name="entry" size="20" value = "<?= $newEntryVal ?>">
答案 1 :(得分:2)
我能想到的最简单的解决方案是:
function zeroCheck(el) {
// caching the value because it's used multiple times
var v = el.value;
/* setting the value with a ternary/conditional operator:
v == '0' : testing that the value is equal to the given string
if it is equal: the value is set to: '' + v (so there's no change),
if it is not equal: the value is set to: '0' + v (so a zero is prepended).
*/
el.value = ( v == '0' ? '' : '0' ) + v;
}
在链接演示中,上述JavaScript与以下HTML一起使用:
<input type="button" name="insert" value="0" onClick="zeroCheck(this)" />
<input type="button" name="insert" value="1" onClick="zeroCheck(this)" />
<input type="button" name="insert" value="2" onClick="zeroCheck(this)" />
<input type="button" name="insert" value="3" onClick="zeroCheck(this)" />
添加一些(基本)错误处理:
function zeroCheck(el) {
// caching the value, because we're using it a few times
var v = el.value,
// saving the number (this way 1.4 and 1 are both preserved)
num = parseFloat(v);
// a basic check to see that the value is a number
// (or rather that it is 'not Not-a-Number):
if (!isNaN(num)) {
el.value = ( v == '0' ? '' : '0' ) + v;
}
else {
// default handling here, to handle non-numeric values:
el.value = 0;
}
}
因为我认为我错误地阅读了这个问题,所以我用另一种可能性更新了这个答案,它处理了兄弟文本输入元素,并且还考虑了已经 一个前导零的值:
function zeroCheck(el) {
/* gets all the 'input' elements within the same parentNode that
contains the button that's to be clicked: */
var inputs = el.parentNode.getElementsByTagName('input'),
/* declaring the variables to be used in the loop, so they're not
being constantly re-declared through the loop */
v, num;
for (var i = 0, len = inputs.length; i < len; i++) {
v = inputs[i].value;
num = parseFloat(v);
// if the input is the button, don't do anything, just keep going
if (inputs[i] == el) {
continue;
// otherwise if the number is not Not-a-Number:
} else if (!isNaN(num)) {
inputs[i].value = (v.charAt(0) == '0' ? '' : '0') + v;
} else {
inputs[i].value = 0; // error-handling
}
}
}
答案 2 :(得分:0)
有很多东西都缺失了。 这是正确的代码:
function zeroCheck(){
var entry = document.getElementsByName("entry")[0];
if (entry.value == '0'){
entry.value = parseInt('0');
} else {
entry.value += parseInt('0');
}
}
无需返回,您使用的==
应该=
来分配值。
还有一个问题是你想用entry.value += '0';
代码做什么。
答案 3 :(得分:0)
最好给你的输入一个id:
<input type="button" id="someid" name="insert" value="0" style="width: 30px; height: 35px" onClick="zeroCheck()">
function zeroCheck(){
var entry = document.getElementById("someid");
if (entry.value == '0'){
entry.value = '0';
} else {
entry.value += '0';
}
}