1

我已经阅读了 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。由于某种原因,它不会改变类。

关于什么可能是错误的任何想法?

4

1 回答 1

0

我设法通过更改我的 jquery 来解决这个问题:

jQuery(document).ready(function () {
jQuery(".info").hover(
function () {
jQuery(".info").toggleClass('showinfo');
}})
于 2013-08-05T08:41:57.913 回答