私には馴染みのないoopを使って選択するオプションがあります。私は最後のオプションを最初のオプションに変更したい。 実際のコーディングは以下のようなものです:それはこのように表示されます最後に選択したオプションを最初のオプションに変更する
<select class="terms" id="terms{VAL_ID}">
<option class="term">Term</option>
</select>
:
<select class="terms" id="128035">
<option class="term" id="1">ans1</option>
<option class="term" id="2">ans2</option>
<option class="term" id="-1">-- Please Select --</option>
</select>
私の問題は、私は、彼らが使用されるJavaScriptを使用して最初の選択肢になるために、最後の選択をしたいです。スクリプトの下に。誰かが最後のオプションを最初のオプションにするためにスクリプトを変更する手助けをすることができます。おかげ
<script>
function renderILQuestion{VAL_ID}()
{
jQuery('div#qtitle{VAL_ID}').html(questions[{VAL_ID}].question);
var terms_dir = {
'option': {
'term <- terms': {
'.': 'term.term',
'@id':'term.id'}
}};
jQuery('#terms{VAL_ID}').render(questions[{VAL_ID}].pairs[0], terms_dir);
var pairs_dir = {
'tbody tr': {
'pair <- pairs': {
'th.definition': 'pair.definition',
'[email protected]':'pair.def_id'}
}};
jQuery('#container{VAL_ID}').render(questions[{VAL_ID}], pairs_dir);
}
renderILQuestion{VAL_ID}();
var obj = document.getElementsByClassName("terms");
</script>
'関数renderILQuestion {} VAL_ID()'これは... – Rafael
確かに*有効な*名ではありませんあなたがここにコードを確認することができます。http://phpcrossref.com/xref/ilias/Modules/Scorm2004 /templates/default/tpl.question_export.html.html – airi
このコードはテンプレートシステムによって補間されているはずです。あなたはあなたの質問に再度タグを付ける必要があり、その質問にはより多くのコードを含める必要があります。 – Rafael