我的预览文字会截断一个字符

时间:2014-01-06 22:26:36

标签: javascript html javascript-events haml frontend

这个很困惑。构建了一个带有相应预览的简单输入表单(它实际上是创建一个调查),但由于某种原因,右侧的预览文本从不显示最后一个字符。查看屏幕截图:https://www.evernote.com/shard/s144/sh/f1c45522-6bcd-4241-aae8-70497c4bc757/3888c44d7c34481ce791974551fbcda0/res/832f002a-57ab-4d35-8233-455cd8a5d247/skitch.png

以下是输入的代码:

    .control-group
      %label.control-label for="product-name" 
         Product Name 
         %a#help-campaign-product.icon-question-sign title="The name of the product or service whose features you are trying to value. Your survey respondents will see this."
      .controls
         %input#product-name.input-xlarge.required type="text" name="product-name" placeholder="My Product" value="{% if campaign.product_name %}{{ campaign.product_name }}{% endif %}"

和预览代码:

    #campaign-title
      .wrapper
        %h4#campaign-product-name style="text-align:center; font-family: Helvetica Neue,Helvetica,Arial,sans-serif; font-weight:300; font-size:24px;"
          My Product
    #preview-product-description style="display:none;"
      %h4#campaign-headline style="text-align:center; font-family: Helvetica Neue,Helvetica,Arial,sans-serif; font-weight:300; font-size:24px;"

我很难过。 :(

1 个答案:

答案 0 :(得分:0)

这里的问题最近由@acoiro强调。基本上,我们正在更新“onkeydown”上的预览标题,这不允许实际角色在预览中注册。将功能更改为“onkeyup”修复了所有问题。