使用javascript文本编辑器后,Textarea必填字段无法正常工作

时间:2015-05-06 07:07:43

标签: javascript php html

我已将textarea作为必填字段,但在我使用下面的javascript代码将其设为texteditor

之前,它工作正常
    <script type="text/javascript" src="<?php echo base_url('/assets/js/nicEdit_without_img.js'); ?>"></script> <script type="text/javascript">
    //<![CDATA[
    bkLib.onDomLoaded(function() {
    nicEditors.editors.push(
        new nicEditor().panelInstance(
            document.getElementById('txt_job_description')
        )
    );
});

Html代码,当我点击带有值的提交按钮时,它仍然要求填写所需的文本区域,这就是问题。

<textarea class="form-control input-sm" type="text" name="txt_desired_skills" id="txt_desired_skills" value="" required><?php echo $txt_desired_skills;?></textarea>

0 个答案:

没有答案