我有一个WooCommerce重力表单,用户可以基于单选按钮选择来选择要注册的软件包。我想根据选择将购物车添加到woocommerce产品。以下是单选按钮组的html和js,但未触发:
<script>
$('#choice_1_112_0').click(function() {
window.location.href = 'www.domian.com/?add-to-cart=125';
return false;
});
</script>
<ul class="gfield_radio" id="input_1_112">
<li class="gchoice_1_112_0">
<input name="input_112" type="radio" value="Normal Package" id="choice_1_112_0">
<label for="choice_1_112_0" id="label_1_112_0">Normal Package</label>
</li>
<li class="gchoice_1_112_1">
<input name="input_112" type="radio" value="eTrade Package" id="choice_1_112_1">
<label for="choice_1_112_1" id="label_1_112_1">eTrade Package</label>
</li>
</ul>
答案 0 :(得分:0)
我是通过一个简单的JS脚本实现的,该脚本实现了触发按钮点击并将产品直接添加到购物车中
jQuery("#btn_349").on("click", function(){
jQuery("#choice_1_112_0").prop("checked", true);
jQuery("#btn_350").text("Select");
jQuery("#btn_349").text("Selected");
jQuery(this).css("background-color", "#c11c2d");
jQuery("#btn_350").css("background-color", "#333335");
});
jQuery("#btn_350").on("click", function(){
jQuery("#choice_1_112_1").prop("checked", true);
jQuery("#btn_349").text("Select");
jQuery("#btn_350").text("Selected");
jQuery(this).css("background-color", "#c11c2d");
jQuery("#btn_349").css("background-color", "#333335");
});