<%= form_for PollQuestion.new,:url =>create_poll_question_poll_path(@poll.id),:remote => true do |f|%>
<div class="ur_editor textarea"> <!--编辑多行文字start-->
  <div class="ur_editor_title">
    <label for="ur_question_title">问题:&nbsp;&nbsp;</label>
    <input type="hidden" name="question_type" value="4"/>
    <input maxlength="250" id="poll_questions_title_new" class="ur_question_title" contenteditable="true" type="text" name="poll_questions_title"  placeholder="请输入多行主观标题"/>
    <input type="checkbox" name="is_necessary" value="true" checked/>
    <label>必答</label>
  </div>
  <div class="ur_editor_toolbar">
    <!--<label>尺寸:</label>-->
    <!--<label>宽 <input name="cols" type="number" min="1" value="60"> 字</label>,-->
    <!--<label>高 <input name="rows" type="number" min="1" value="5"> 行</label>-->
  </div>
  <div class="ur_editor_footer">
    <a class="btn_submit c_white" data-button="ok" id="add_new_question_new">
      <%= l(:label_button_ok)%>
    </a>
    <a class="btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">
      <%= l(:button_cancel)%>
    </a>
  </div>
  <div class="cl"></div>
</div><!--编辑多行文字end-->
<% end%>
<script type="text/javascript">
    $(function(){
        $("#add_new_question_new").one('click', function(){
            add_poll_question_new($(this));
        });
    });
</script>