目前正在尝试使用flask和wtforms来制作一个html表单。我的 for 模板如下所示:
<ul><li>Description:</li>
<li> <textarea class="input" rows="10" cols="50" name="description" onKeyDown="limitText(this.form.description,this.form.countdown,150);"
onKeyUp="limitText(this.form.description,this.form.countdown,150);"> 文章描述。您还有字符。
我想使用 wtforms 并替换:
<textarea..> with {{form.description}}.
但是那我该如何合并 onkeydown 事件呢?我需要它来计算已经在 textarea 中输入的字符数。
顺便提一句。我使用 wtforms 制作的表单如下所示:
class ItemForm(Form):
title = TextField("Title")
subtitle = TextAreaField("Sub Title")
Description = TextAreaField("Description")
offervalue = FloatField("Offer Value")
imagefile_1 = FileField("Image File 1")
imagefile_2 = FileField("Image File 2")
imagefile_3 = FileField("Image File 3")
问题:即使在文本区域中发生的任何事情,我仍应如何将 JAVASCRIPT 包括在内?
感谢任何指针。