1
id
とvalue
の両方を選択したラジオボタンからプルしたいとします。私はこれは私がここにGet Radio Button Value with Javascript選択したラジオボタンからIDと値を引き出すスクリプトが機能しない
道からの抜粋です
var radios = document.getElementsByName('genderS');
for (var i = 0, length = radios.length; i < length; i++) {
if (radios[i].checked) {
// do whatever you want with the checked radio
alert(radios[i].value);
// only one radio can be logically checked, don't check the rest
break;
}
}
私は角2
に出会ったし、それに打撃を与えることにしたいくつかの記事やブログにこのコードのスタイルに出くわしましたこのselected = {value1: '', value2: ''}; //where I want the results to be stored.
//custom function with the snippet implemented
getSelected() {
const radios = document.getElementsByName(this.quesForm.value.name);
for (var i = 0, length = radios.length; i < length; i++) {
if (radios[i].click){
this.selected.value1 = radios[i].getAttribute("id");
this.selected.value2 = radios[i].getAttribute("value");
break;
}
}
}
//calling it here in an attempt to make sure it detects when the selection changes.
ngOnChanges() {
this.getSelected();
console.log(this.selected);
}
私のテンプレートがこの
<div *ngFor="let ans of quesForm.value.answers">
<input type="radio"
[attr.name] = "quesForm.value.name"
[attr.id] = "ans.id"
[attr.value] = "ans.answer"
/>
<label>{{ans.answer}}</label>
</div>
のように設定されているように私の角クラスでそれを実装しようとすることです
エラーは表示されませんが、結果ログも表示されません。form
タグの外側にも結果が表示され、空のままになっています。
<p>{{selected | json}}</p>
なぜこれが機能しないのですか?
選択した入力から値とIDを取得するにはどうすればよいですか? – Optiq
答えオブジェクトにあります – shusson
ok nevermind私はちょうどそれを笑って考え出しました!!! – Optiq