作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
第一个问题:RadioCheck应该是单选,但我不知道为什么它是多选...
第二个问题:第二,如果它不起作用(控制台不显示任何错误;/
它应该如何运作?我单击第一个单选按钮,然后函数获取单选按钮的 id 并显示下一个 div。接下来,如果再次检查单选按钮,它应该购买下一个 div (divgazkpz) - 这是行不通的。
代码:html
<div class="col-xs-6 col-md-4" id="selectbackground">
<form role="form" id="mainForm">
<p>Główny wybór:</p>
<label class="radio">
<input type="radio" name="gaz" id="gaz">Gaz
</label>
<label class="radio">
<input type="radio" name="gazspc" id="gazspc" disabled>Gaz skroplony pod ciśnieniem
</label>
<label class="radio">
<input type="radio" name="ciecz" id="gazspc" disabled>Ciecz
</label>
<label class="radio">
<input type="radio" name="gazspc" id="gazsspca" disabled>Gaz skroplony/schłodzony pod ciśnieniem atmosferycznym
</label>
<button type="button" class="btn btn-primary btn-sm" id="buttonmain" onclick="RadioCheck()">Dalej</button>
</form>
</div>
<!-- Wybór z pola GAZ -->
<div class="col-xs-6 col-md-4" id="divgaz" style="display: none;">
<form role="form" id="mainForm">
<p>Gaz:</p>
<label class="radio">
<input type="radio" name="gazkpz" id="gazkpz">Katastrofalne pęknięcie zbiornika
</label>
<label class="radio">
<input type="radio" name="gazws" id="gazws">Wypływ strumieniowy
</label>
<button type="button" class="btn btn-primary btn-sm" id="buttongazkpzws" onclick="RadioCheck()">Dalej</button>
</form>
</div>
<!-- Gaz : Katastrofalne pęknięcie zbiornika-->
<div class="col-xs-6 col-md-4" id="divgazkpz" style="display: none;">
<form role="form" id="mainForm">
<p>Katastrofalne pęknięcie zbiornika:</p>
<label class="radio">
<input type="radio" name="gazpk" id="gazpk">Pożar kulisty
</label>
<label class="radio">
<input type="radio" name="gazwcpg" id="gazwcpg">Powstanie chmury parowej / gazowej
</label>
<button type="button" class="btn btn-primary btn-sm" id="buttongazpkpwcpg" onclick="RadioCheck()">Dalej</button>
</form>
</div>
JavaScript:
function RadioCheck()
{
var x = document.getElementById("mainForm").checked;
if (x = gaz.checked)
{
document.getElementById('divgaz').style.display = 'block' ;
document.getElementById("buttonmain").setAttribute("disabled", "disabled");
}
else if (x = gazkpz.checked)
{
document.getElementById('divgazkpz').style.display = 'block' ;
document.getElementById("buttongazkpzws").setAttribute("disabled", "disabled");
}
else
{
alert('Nic nie wybrales');
}
}
function restart()
{
location.reload(true);
}
最佳答案
您混淆了 name
和 value
属性。
名称
决定了一组选项的名称,以及将选择其中的一个,因此该组中的所有单选按钮都需要相同的名称。然后,您可以为每一项赋予不同的值,并取所选值的值。
如果您制作一个提交到服务器的标准 HTML 表单,则所选选项的值应该几乎自 Action 为参数发送。
要通过 javascript(特别是 jQuery)执行此操作,您需要执行以下操作:
$('button').click(function () {
var my_value = $('[name=my_option]:checked').val();
alert(my_value);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>
<label><input type="radio" name="my_option" value="option1" /> Option 1</label>
</p>
<p>
<label><input type="radio" name="my_option" value="option2" /> Option 2</label>
</p>
<p>
<label><input type="radio" name="my_option" value="option3" /> Option 3</label>
</p>
<p>
<button>What is selected?</button>
</p>
关于javascript - 多选和div不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36845476/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!