1

我想更新这个页面,但它的 css 是从 paypal 网站加载的。 common.css 正在从 paypal 网站加载,但仍然没有反映任何更改

我想更新这个页面,但它的 css 是从 paypal 网站加载的。common.css 正在从 paypal 网站加载,但仍然没有反映任何更改

4

1 回答 1

0

如果您尝试使用 jQuery 调整 CSS 组件,就像在 M1 中所做的那样 - 这将不再适用于 M2,因为 M2 使用 RequireJS。

相反,您应该在所需的 PHTML 文件中添加类似这样的内容:

<script>
    require([
        "jquery"
        ], function ($) {
                // Perform desired action(s) on the selector(s) you're interested in
                // For example:
                $("#UiElementOfInterest").hide();
            });
        });
</script>

希望有帮助!:)

于 2017-09-28T15:00:29.277 回答