我尝试使用javascript创建在线计算表单,除了单选按钮外,一切正常。
情景:
x(select list) =
item1 - value="11.2"
item2 - value="7.6"
item3 - value="7"
y=(input number)
z=(input number)
coverkind=(radio button)
if 1 selected >> coverkind = z*800
if 2 selected >> coverkind = ((y/16)+1)*8*z
totalprice= (x*y*z)+(1000*z)+coverkind
我的工作到现在为止:
<html>
<head>
<script type="text/javascript">
function getselectionPrice() {
var elt = document.getElementById("selectionone");
var selectionPrice = elt.options[elt.selectedIndex].value;
var y = document.getElementById("y").value;
var z = document.getElementById("z").value;
var ser = (selectionPrice * y * z);
var dz = z*1000;
var coverkind = document.getElementById("cover").value;
if (coverkind == 'soft') {
var SizePrice = (z * 800);
} else {
var SizePrice = ((y / 16) + 1) * 8 * z;
}
var finalPrice = ser + dz;
document.getElementById("totalPrice").value = finalPrice;
}
</script>
</head>
<body>
<div>
<form action="" id="calcform" onsubmit="return false;">
<div>
<div>
<fieldset>
<label>select</label>
<select id="selectionone" name='selectionone' onChange="getselectionPrice()">
<option value="11.2">1</option>
<option value="7.6">2</option>
<option value="7">3</option>
</select>
<br/>
<p>y
<input type="text" id="y" onchange="getselectionPrice()" />
</p>
<p>z
<input type="text" id="z" onchange="getselectionPrice()" />
</p>
<label>cover</label>
<input type="radio" name="cover" value="hard" />hard
<br />
<br>
<input type="radio" name="cover" value="soft" />soft
<br>
<br>
<br/>The new calculated price:
<INPUT type="text" id="totalPrice" Size=8>
</fieldset>
</div>
<input type='submit' id='submit' value='Submit' onclick="getselectionPrice()" />
</div>
</form>
</div>
</body>
</html>
如果我从js中移除coverkind,其余的工作正常。我用谷歌搜索从单选按钮获取价值,没有发现与这种情况非常相关。 firebug错误面板:
TypeError:document.getElementById(...)为null var coverkind = document.getElementById(&#34; cover&#34;)。value;
答案 0 :(得分:1)
如果你可以使用jQuery,你可以在一行中获得选中的单选按钮的值。
var Val = $("input[name=cover]:checked").val();
答案 1 :(得分:0)
如果需要,可以使用输出标记或输出其他内容。 (例如,<p>
元素)。只需确保在Javascipt中为“id”值提供您想要访问的任何内容。
您需要创建一个新文件并将其称为“script.js”。 Google如何在您的html文档中包含此脚本。
您需要在脚本中使用的一些内容:
document.getElementById(str)
返回表示html的对象 id为'str'的元素
parseFloat(str)
取字符串'str'并返回浮点值
.value
这是输入文本框对象的读/写属性 包含文本值
.checked
..以及输入单选按钮对象的属性。
当你碰到墙壁时,请参阅伟大的谷歌;)把所有这些放在一起,你应该走在正确的轨道上。
答案 2 :(得分:0)
以下是您的问题的解决方案。
首先为您的单选按钮指定相同的ID。 checked属性将告诉您元素是否被选中:
<input type="radio" id="cover" name="cover" value="hard" checked="checked" />hard
<br />
<br>
<input type="radio" id="cover" name="cover" value="soft" />soft
在JavaScript函数中,你可以得到它。
var coverkind = null;
if (document.getElementById('cover').checked)
{
coverkind = document.getElementById('cover').value;
}
if (coverkind == 'soft') {
var SizePrice = (z * 800);
} else {
var SizePrice = ((y / 16) + 1) * 8 * z;
}