0

我正在编写一个 wtforms 自定义表单,其中包括

  • 多个布尔检查按钮/单选按钮

  • 和隐藏的文本输入。

  • 如果用户单击“其他”按钮,则启用文本输入并且用户可以手动编写内容

  • 如果用户取消单击“其他”按钮,则禁用文本输入。

这是绘制这个的小部件函数(用于多个复选框):

def select_multi_other_checkbox(field, ul_class='', **kwargs):
    """check wtforms.widgets.core to see what is going on"""
    kwargs.setdefault('type', 'checkbox')
    field_id = kwargs.pop('id', field.id)
    html = [u'<ul %s>' % html_params(id=field_id, class_=ul_class)]
    for value, label, checked in field.iter_choices():
        choice_id = u'%s-%s' % (field_id, value)
        options = dict(kwargs, name=field.name, value=value, id=choice_id)
        if checked:
            options['checked'] = 'checked'
        html.append(u'<li><input %s /> ' % html_params(**options))
        html.append(u'<label %s>%s</label></li>' % (html_params(**options), cgi.escape(text_type(label))))

    else:
        choice_id = u'%s-%s' %(field_id, u'other')
        options = dict(kwargs, name=field.name, value='', id = choice_id)
        options['type'] = 'text'
        html.append(u'<input %s > ' % (html_params(**options)))

    html.append(u'</ul>')
    cPickle.dump(html, open("htmltest.p", "wb"))
    return u''.join(html)

该部分html.append(u'<input %s > ' % (html_params(**options)))是添加 textinput 的地方。(注意这options['type'] = 'text'意味着标签的type="text"属性<input>)问题是,我怎样才能使隐藏的文本输入(不是type="hidden"),以便以后可以通过 jquery 显示它?

4

1 回答 1

1

添加隐藏它的样式:

<input type="text" style="display:none" id="myhiddentextfield" />

然后使用 jQuery 显示它:

$('#myhiddentextfield').show();
于 2013-02-04T22:19:36.640 回答