0

我使用 shopify Api 创建了一个脚本标签

    $src = "http://localhost/shopifyplugin/shopify.js";
    $script = $sc->call('POST', '/admin/script_tags.json', array(
            "script_tag"=> array(
                "event"=>"onload", "src"=>"$src"
             )));

js文件代码:

console.log("Coming here...");
alert("coming here...");
jQuery("form[action='/cart/add']").each(function() {
  console.log("I'm in product page");
});

但是,在商店里它没有显示任何东西。如果是,我是否需要包含 jquery,那么我应该在哪个文件中包含,我在 index.php 文件中创建脚本标记。

4

1 回答 1

-1

试试http://support.shopify.com/。你很可能会在那里得到更好的支持。

此外, http: //support.shopify.com/#stq=javascript&stp=1获取 javascript 帮助 :)

于 2013-04-29T09:52:01.727 回答