将下拉选择输入转换为需要选择一个的单选按钮
我正在使用一个电子商务系统,该系统允许您为每种产品提供多种变体(例如:大号、中号、小号 T 恤)。然而,我们收到了一些顾客的投诉,他们添加了一件 T 恤,却忽略了这一变化。结果,很多大个子都穿小 T 恤(默认)。为了解决这个问题,我想强制用户选择一个单选按钮(而不是下拉选择列表),只有这样“添加到购物车”按钮才可用。这是当前显示选择下拉列表的 php;
<?php while (have_variation_groups()) : the_variation_group(); ?>
<?php /** variation HTML and loop */?>
<select class='select_variation' name="variation[<?php echo variation_id(); ?>]" id="<?php echo variation_group_form_id(); ?>">
<?php while (have_variations()) : the_variation(); ?>
<option value="<?php echo the_variation_id(); ?>"><?php echo the_variation_name(); ?></option>
<?php endwhile; ?>
</select>
<?php endwhile; ?>
<?php echo add_to_cart_button(the_product_id()); ?>
哪个会吐出这种 html...
<select class='select_variation' name="variation[1]" id="variation_select_22_1">
<option value="1">Small</option>
<option value="2">Big</option>
</select>
<input type='submit' id='product_22_submit_button' class='buy_button' name='Buy' value="Add To Cart" />
您建议我如何将下拉菜单转换为单选按钮,并确保添加到购物车按钮在他们选择变体之前不可单击? 谢谢
I'm using an e-commerce system which allows you to have several variations for each product - (for instance: large, medium, small t-shirts). However, we are having complaints from customers who add a t-shirt and ignore the variation. As a result, a lot of big people are getting small t-shirts (the default). To solve this, I'd like to force the user to choose a radio button (instead of a drop-down select list), and only then will the add to cart button become available. Here is the current php which displays the select drop-down;
<?php while (have_variation_groups()) : the_variation_group(); ?>
<?php /** variation HTML and loop */?>
<select class='select_variation' name="variation[<?php echo variation_id(); ?>]" id="<?php echo variation_group_form_id(); ?>">
<?php while (have_variations()) : the_variation(); ?>
<option value="<?php echo the_variation_id(); ?>"><?php echo the_variation_name(); ?></option>
<?php endwhile; ?>
</select>
<?php endwhile; ?>
<?php echo add_to_cart_button(the_product_id()); ?>
Which spits out this sort of html...
<select class='select_variation' name="variation[1]" id="variation_select_22_1">
<option value="1">Small</option>
<option value="2">Big</option>
</select>
<input type='submit' id='product_22_submit_button' class='buy_button' name='Buy' value="Add To Cart" />
How would you suggest I convert the drop-down to radio button, and make sure the add-to-cart button is not clickable until they have chosen a variation?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不添加一个值为 0 并文本“请选择尺寸”的默认选项?
Why not add a default option with a value of 0 and text "Please Choose Size"?
我不是 PHP 开发人员,如果我破坏了该语言,那么提前抱歉...
这应该会为您提供单选按钮列表:
这将有望为您提供如下所示的内容:
然后您可以使用一些 jQuery 来启用该按钮单击其中一个选项:
您还可以考虑在现有下拉列表中添加一个虚拟“请选择”项目并将其设为默认值。
I'm not a PHP developer, so sorry in advance if I butcher the language...
This should get you the list of radio buttons:
Which will hopefully give you something like this:
Then you can use some jQuery to enable the button when one of the options is clicked:
You might also consider just adding a dummy 'Please select' item to the existing drop down and making it the default.