0

我在确定取消订阅表单的 jquery(或 javascript)语法时遇到了一些麻烦。

该项目包括以下内容:

我不再希望收到:

(1) 与产品 A 相关的信息

(2) 公司 A1 的任何生产信息(公司 A1 也拥有产品 A)

(提交)

请记住,我没有为访问者提供一个字段来提交他们的电子邮件地址。尽管用户可以选择不使用产品 A,但如果他们选择,他们仍然会收到来自公司的电子邮件。如果他们选择选项 2,他们将取消订阅公司提供的所有产品。

这是我的html:

<p class="text">Unsubscribe</p>

<p>I no longer wish to receive:</p> 
<form> 
     <input type="radio" name="choice1" value="choice1" />Information related to product A <br /> 
     <input type="radio" name="choice2" value="choice2" />Information about any product from Company A<br /> 
     <input type="button" value="submit" />
</form>

我还没有转向JS。我被困在最好的方法上。任何建议将不胜感激。谢谢

4

1 回答 1

0

例如,为您的表单提供 id,unscfrm然后您可以访问用户的选择,如下例所示

$('#unscfrm input[type=button]').click(function(event)

  {
    event.preventDefault();

    var choice=$('unscfrm').find('input:radio:checked').val();

    alert(choice);
  })
于 2013-10-26T00:00:51.790 回答