我使用 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 文件中创建脚本标记。