2016-10-27 10:12:50 +08:00
|
|
|
<div class="poll-container">
|
2016-10-27 15:38:10 +08:00
|
|
|
<div class="poll-tool-bar" id="poll_tool_bar_<%= poll_question.id%>">
|
|
|
|
<%= render :partial => "poll_tool_bar", :locals => {:type => 'single', :poll_question => poll_question}%>
|
2016-10-27 10:12:50 +08:00
|
|
|
</div>
|
|
|
|
<div class="poll-content">
|
2016-10-27 14:31:14 +08:00
|
|
|
<div class="testEditTitle" style="padding-top:0;">
|
2016-10-27 10:12:50 +08:00
|
|
|
<span class="formatContainer m_w500"><%= poll_question.question_title %></span>
|
|
|
|
<span class="fontBlue">[主观题]</span>
|
|
|
|
</div>
|
|
|
|
|
2016-11-07 16:03:04 +08:00
|
|
|
<a class="poll-edit" style="display:none;" title="编辑" onclick="pollQuestionEdit(<%= poll_question.id%>);"></a>
|
2016-10-27 10:12:50 +08:00
|
|
|
<div class="cl"></div>
|
|
|
|
<div class="ur_inputs">
|
2016-10-27 15:07:46 +08:00
|
|
|
<textarea type="text" size="" maxlength="" value="" style="width:640px; border:1px solid #ddd;" rows="3" readonly="readonly"></textarea>
|
2016-10-27 10:12:50 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-28 10:27:45 +08:00
|
|
|
</div><!--单行文字展示 end-->
|
|
|
|
<!-- 新增问题 -->
|
|
|
|
<div id="insert_new_poll_question_single_<%=poll_question.id%>">
|
2016-10-27 18:25:47 +08:00
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$(".poll-add").mouseover(function(){
|
2016-10-28 15:42:45 +08:00
|
|
|
$(this).children('ul').show();
|
2016-10-27 18:25:47 +08:00
|
|
|
}).mouseout(function(){
|
2016-10-28 15:42:45 +08:00
|
|
|
$(this).children('ul').hide();
|
2016-10-27 18:25:47 +08:00
|
|
|
});
|
|
|
|
$(".poll-add-menu").mouseover(function(){
|
|
|
|
$(this).show();
|
|
|
|
}).mouseout(function(){
|
|
|
|
$(this).hide();
|
|
|
|
});
|
|
|
|
</script>
|