0
json経由でデータを受信していますが、入力に基づいて、あらかじめ選択されたラジオボタン(緑/黄/赤)値を入力します。 3番目の列には、コメントボックスが表示されています。javasciprtを使用して動的に作成されたラジオボタンに動的に作成されたテキストボックスを表示
ここで、黄/赤のラジオボタンが入力された場合、または選択した場合のみ、コメントボックスを表示したいと考えています。ここで
は、使用中の私のコードです:
$(document).ready(function() {
\t var appStatus = [{
\t \t "category": "Overall Status",
\t \t "status": "0"
\t }, {
\t \t "category": "System Availability",
\t \t "status": "1"
\t }, {
\t \t "category": "Whatever",
\t \t "status": "2"
\t }];
\t var tr;
\t for (var i = 0; i < appStatus.length; i++) {
\t \t \t tr = $('<tr/>');
\t \t \t tr.append("<td>" + appStatus[i].category + "</td>");
\t \t \t tr.append('<tr id="row' + i + '"><td><input type="radio" name="inlineRadioOptions_' + i + '[]" value="0" id="inlineRadio0"' +
\t \t \t (appStatus[i].status == '0' ? ' checked="checked"' : '') +
\t \t \t '><font color="black">Grey  </font><label class="radio-inline"><input type="radio" name="inlineRadioOptions_' + i + '[]" value="1" id="inlineRadio1"' +
\t \t \t (appStatus[i].status == '1' ? ' checked="checked"' : '') +
\t \t \t '><font color="green">Green  </font><label class="radio-inline"><input type="radio" name="inlineRadioOptions_' + i + '[]" id="inlineRadio2" value="2"' +
\t \t \t (appStatus[i].status == '2' ? ' checked="checked"' : '') +
\t \t \t '><font color="yellow">Yellow  </font></label><label class="radio-inline"><input type="radio" name="inlineRadioOptions_' + i + '[]" id="inlineRadio3" value="3"' +
\t \t \t (appStatus[i].status == '3' ? ' checked="checked"' : '') + '> <font color="red">Red</font></label><td></tr>');
\t \t \t //tr.append("<td>" + "<input>" + appStatus[i].comments + "</input>" + "</td>");
\t \t \t tr.append("<td>" + '<tr id="row' + i + '"><td><input type="text" id="appStatus[i].comments" name="appStatus[i].comments" placeholder="Comments" class="form-control name_list" required' + "</td>");
\t \t \t $('table').append(tr); \t }
\t $('#result').on('click', function() {
\t \t var new_status = [];
\t \t $('.table tbody tr').each(function() {
\t \t \t new_status.push({
\t \t \t \t category: $(this).find('td:eq(0)').text(),
\t \t \t \t status: $(this).find(':radio:checked').val()
\t \t \t });
\t \t });
\t \t console.log(new_status);
\t });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table class="table table-hover">
<thead>
<th>Category</th>
<th>Status</th>
<th>Comments</th>
</thead>
</table>
私を助けなかった。ラジオボタンを変更しながら、javascript内でhidden = "true"をhidden = "false"に更新する方法はありますか?私はそれを最後のtr.append for input text boxに加えました。 –
はい、実際にHTMLとCSSをうまく勉強しなければなりません。 *あなたがHTML *で実現したいものを手書きで書くことで*スタートし、それをスクリプトにします。あなたは方法を見つけるでしょう。あなたのコードには多くの基本的なエラーがありますが、幸運にもネット上で利用可能な多くのリソースがあります。 –