html 在REGISTRATION表单中收集客户标签的示例,以及多个标签。服务器需要以逗号分隔的标签列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在REGISTRATION表单中收集客户标签的示例,以及多个标签。服务器需要以逗号分隔的标签列表相关的知识,希望对你有一定的参考价值。

<p>I am interested in:</p>
<p>
  <input type="checkbox" class="interested-in" value="sunsets">Sunsets<br />
  <input type="checkbox" class="interested-in" value="piña coladas">Piña coladas<br />
  <input type="checkbox" class="interested-in" value="getting lost in the rain">Getting lost in the rain<br />
  <input type="checkbox" class="interested-in" value="songs by rupert holmes">Songs by Rupert Holmes<br />
</p>

<!-- this is what is submitted to the server -->
<input type="hidden" name="customer[tags]" />

<script>
jQuery(function() {
  jQuery('.interested-in').change(function() {
    var tags = '';
    jQuery('.interested-in:checked').each(function(){
      tags += jQuery(this).val() + ',';
    });  
    jQuery('[name*="tags"]').val(tags);
  });
});
</script>

以上是关于html 在REGISTRATION表单中收集客户标签的示例,以及多个标签。服务器需要以逗号分隔的标签列表的主要内容,如果未能解决你的问题,请参考以下文章

将表单数据插入 MySQL?

如何将 Django-Registration-Redux 注册表单放在其他页面上?

自定义 Django-Registration-Redux 表单

Django-Registration & Django-Profile,使用你自己的自定义表单

为 django 1.5 自定义用户模型子类化 django-registration 1.0 表单

keycloak 动态客户端注册registration_client_uri docker主机名覆盖