Javascriptを使用してラジオボタンリストのonclickを呼び出すにはどうすればよいですか?
ラジオボタンリストをどのように生成していますか? HTMLのみを使用している場合:
<input type="radio" onclick="alert('hello');"/>
ASP.NETなどの方法でこれらを生成する場合は、リスト内の各要素に属性として追加できます。リストを作成した後にこれを実行するか、リストを1つずつ作成する場合はインラインで実行できます。
foreach(ListItem RadioButton in RadioButtons){
RadioButton.Attributes.Add("onclick", "alert('hello');");
}
ラジオボタンでonClickイベントをトリガーするには、DOM要素のclick()
メソッドを呼び出します。
document.getElementById("radioButton").click()
jqueryを使用:
$("#radioButton").click()
AngularJs:
angular.element('#radioButton').trigger('click')
@annakataには、この質問にさらに明確化が必要であることに同意しますが、ラジオボタンのonclick
イベントハンドラーをセットアップする方法の非常に基本的な例を次に示します。
<html>
<head>
<script type="text/javascript">
window.onload = function() {
var ex1 = document.getElementById('example1');
var ex2 = document.getElementById('example2');
var ex3 = document.getElementById('example3');
ex1.onclick = handler;
ex2.onclick = handler;
ex3.onclick = handler;
}
function handler() {
alert('clicked');
}
</script>
</head>
<body>
<input type="radio" name="example1" id="example1" value="Example 1" />
<label for="example1">Example 1</label>
<input type="radio" name="example2" id="example2" value="Example 2" />
<label for="example1">Example 2</label>
<input type="radio" name="example3" id="example3" value="Example 3" />
<label for="example1">Example 3</label>
</body>
</html>
ここでの問題は、RadioButtonListのレンダリングが個々のラジオボタン(ListItems)をspanタグでラップし、属性を使用してクライアント側イベントハンドラーをリストアイテムに直接割り当てた場合でも、イベントをspanに割り当てることです。 RadioButtonListにイベントを割り当てると、イベントをレンダリングするテーブルに割り当てます。
ここでのコツは、コードビハインドからではなく、aspxページにListItemを追加することです。次に、JavaScript関数をonClickプロパティに割り当てることができます。このブログ投稿。 Juri Strumpflohnerによるラジオボタンリストへのクライアント側イベントハンドラーの接続 はすべてを説明します。
これは、事前にListItemを知っている場合にのみ機能し、コードビハインドを使用してRadioButtonList内の項目を動的に追加する必要がある場合には役立ちません。
次の解決策を試してください
HTML:
<div id="variant">
<label><input type="radio" name="toggle" class="radio" value="19,99€"><span>A</span></label>
<label><input type="radio" name="toggle" class="radio" value="<<<"><span>B</span></label>
<label><input type="radio" name="toggle" class="radio" value="xxx"><span>C</span></label>
<p id="price"></p>
JS:
$(document).ready(function () {
$('.radio').click(function () {
document.getElementById('price').innerHTML = $(this).val();
});
});
Hi, I think all of the above might work. In case what you need is simple, I used:
<body>
<div class="radio-buttons-choice" id="container-3-radio-buttons-choice">
<input type="radio" name="one" id="one-variable-equations" onclick="checkRadio(name)"><label>Only one</label><br>
<input type="radio" name="multiple" id="multiple-variable-equations" onclick="checkRadio(name)"><label>I have multiple</label>
</div>
<script>
function checkRadio(name) {
if(name == "one"){
console.log("Choice: ", name);
document.getElementById("one-variable-equations").checked = true;
document.getElementById("multiple-variable-equations").checked = false;
} else if (name == "multiple"){
console.log("Choice: ", name);
document.getElementById("multiple-variable-equations").checked = true;
document.getElementById("one-variable-equations").checked = false;
}
}
</script>
</body>