我有一个存储在cookie中的相对URL字符串,即function add_google_analytics_code_to_pages(){
?>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-ADD YOU GOOGLE ANALYTICS ID HERE', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<?php
}
add_action("wp_head","add_google_analytics_code_to_pages");
。
我想将此页面上的图片的完整网址作为JavaScript变量中的字符串返回。此另一页上的图片具有唯一的类foo/bar/abc
。
创建此变量的URL和存储在cookie中的URL都在同一个域中。
Cookie名称为.image
如何使用JavaScript / jQuery将另一个页面上的图像的URL作为变量获取?
到目前为止,我有一个脚本来修改需要创建变量的页面上的内容。我不知道如何从cookie中提取URL,然后从此页面上的元素中检索属性(以定义URLForImage
):
ImageUrl
由于