Hubspot:HTML元素的自定义属性

时间:2015-12-07 12:01:25

标签: javascript html hubspot

什么是最好的方式/如果有任何/将自定义属性添加到Hubspot中的HTML元素,更具体地说,添加到<形式>由Hubspot创建的元素?

<form id="form-id" myAtrribute="myValue"></form>

*编辑:

静态解决方案会更好,因为它将用于表单分析。

谢谢!

1 个答案:

答案 0 :(得分:1)

如果您有权访问自定义代码部分,并假设您拥有jQuery,则可以执行以下操作:

<script>
   $("#form-id").attr("myAttribute", "myValue");
</script>

如果你没有jQuery:

<script>
    document.getElementById("form-id").setAttribute("myAttribute", "myValue")
</script>