gpt4 book ai didi

javascript - 图像的窗口位置 href

转载 作者:行者123 更新时间:2023-12-02 17:17:11 25 4
gpt4 key购买 nike

尝试向图像添加共享按钮,目前 JavaScript 中的配置是这样的:

url: window.location.href

我希望 url 是图像的 url,而不是整个页面。这是配置

    this.config = {
enabled_networks: 0,
protocol: ['http', 'https'].indexOf(window.location.href.split(':')[0]) === -1 ? 'https://' : '//',
url: window.location.href,
caption: null,
title: (content = document.querySelector('meta[property="og:title"]') || document.querySelector('meta[name="twitter:title"]')) ? content.getAttribute('content') : (content = document.querySelector('title')) ? content.innerText : void 0,
image: (content = document.querySelector('meta[property="og:image"]') || document.querySelector('meta[name="twitter:image"]')) ? content.getAttribute('content') : void 0,
description: (content = document.querySelector('meta[property="og:description"]') || document.querySelector('meta[name="twitter:description"]') || document.querySelector('meta[name="description"]')) ? content.getAttribute('content') : '',

有人可以告诉我如何将图像定位为网址而不是整个页面吗?

最佳答案

试试这个:

url: $("yourImageSelector").prop("src")

这将从 DOM 中获取图像,然后获取其 src 属性的值,即图像的 URL(请注意,此方法还会将 URL 转换为绝对值)给你的网址)。

关于javascript - 图像的窗口位置 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24333081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com