非表示フィールド「episode_airdate」の 1 つの値を作成するために結合するために使用される 3 つの選択オプションがあります。問題は、<table tr>
それらが複製されるため、ID も複製され、getElementById が役に立たなくなることです。ByName と ByClass を試してみましたが、うまくいきませんでした。
<script>
function datepopulate(){
var day = document.getElementById('airdate_day').value;
var month = document.getElementById('airdate_month').value;
var year = document.getElementById('airdate_year').value;
var completedate = day+'-'+month+'-'+year;
document.getElementById('episode_airdate').value = completedate;
alert(document.getElementById('episode_airdate').value);
return true;
}
</script>
生成された数字を追加すると、airdate_year[1] + airdate_month[1] + airdate_day[1] = episode_airdate[1] ?
jQueryにこれを行うためのより良い方法がある場合、私はそのアイデアに開かれています