我已经阅读了 woocommerce 关于如何自定义结帐字段的文档:
http://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
我有以下工作正常:
$fields['order']['billing_last_name']['label_class'] = array('info');
return $fields;
这会为 billing_last_name 字段的标签添加一个新类。
我想在上面添加一个 on:hover 事件,因此当您将鼠标悬停在“info”类上时,它会变为“showinfo”。这背后的想法是我想创建一个工具提示。
我添加了以下 jQuery 来执行此操作:
$(document).ready(function () {
$(".info").hover(
function () {
$(".info").toggleClass('showinfo');
}});
我也加入了 jQuery。由于某种原因,它不会改变类。
关于什么可能是错误的任何想法?