我有一些看起来像这样的 html:
<h3 class="basic left-top-border-radius">Basic<br /> 500<span>$25</span></h3>
<a class="signup colorbox" href="#text-signup-form">More Info</a>
单击更多信息时,会弹出一个带有简单信息请求表单的灯箱。这是我的问题。我希望在单击链接时将 h3 标题的文本传递到隐藏的表单输入字段,以便我知道他们单击了哪个计划以获取更多信息。
输入看起来像这样:
<input type="text" class="cat_textbox" id="CAT_Custom_440761" name="CAT_Custom_440761" maxlength="1024" />
我将如何使用 jQuery 来做到这一点?(我想过使用 jQuery.text()
方法,但我读到它不适用于表单,而且我不知道如何传递 h3 文本。
注意页面上有多个h3
元素。