Commit 50d3023a by Kim Gyeongeun

#51436 設問の選択肢を21個以上作成した際、21個目以降の選択肢にフリーアンサー設定ができない(ID:0027)

parent 35e68f35
......@@ -459,7 +459,7 @@ window.scroll(500,500);
<div class="text_number">
該当選択肢&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<select name="radioFreeNo" id="select" class="w100">
#foreach( $length in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20] )
#foreach( $length in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21] )
<option value="$length" #if($!radioFreeNo == $length) selected #end>$length</option>
#end
</select>
......@@ -561,7 +561,7 @@ window.scroll(500,500);
<div class="text_number">
該当選択肢&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<select name="checkFreeNo" id="select" class="w100">
#foreach( $length in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20] )
#foreach( $length in [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21] )
<option value="$length" #if($!checkFreeNo == $length) selected #end>$length</option>
#end
</select>
......
<script language="javascript" type="text/javascript" charset="utf-8">
$(function() {
$("input[type=radio], input[type=checkbox], input[type=select]").click(function () {
$(this).focus();
});
});
</script>
<div class="bg_blue">
$tools.getMsg("errorheader")
####質問開始######
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment