私は自分のjqueryに問題があり、うまく動作させることができません。
私は調査を行っていますが、すべての質問の最後のラジオ オプションはその他であるため、ユーザーは好きなようにカスタム テキストを入力できます。ラジオがチェックされ、テキストボックスがピアになるまで、またはチェックされるまで、テキストボックスを非表示にしたいと思います。
私はこれを試しました:
$(document).ready(function () {
$("#custom_form_custom_field_2_block").hide();
$("input:radio[name=custom_form[custom_field_1]]").change(function () {
if (this.value == "jeg har et helt 4. forslag") {
$("#custom_form_custom_field_2_block").fadeIn();
} else {
$("#custom_form_custom_field_2_block").fadeOut();
}
});
$("#custom_form_custom_field_2_block").focusout(function () {
$("input:radio[name=Title]:checked").attr('value', $("#custom_form_custom_field_2_block").val());
});
});
ここに mt fiddle へのリンクがあります: JSFiddle
あなたが助けてくれることを願っています、よろしくトーマス