问题标签 [src]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 设置 iframe 源而不加载新内容
有没有办法在 iframe 不生成 http 请求的情况下设置 iframe 的 src 属性?如果没有,有没有办法在发送请求之前格式化请求标头?
编辑:我只需要 src 来匹配 cookie 的路径,但我不希望将该 cookie 发送到服务器。请参阅我对这个问题的评论。
javascript - 如何隐藏没有 src 属性的 img 元素,直到添加该属性?
我的 JS 代码包含一些开头为空的图像(完全没有指定 src 属性 + display:none)。
当添加到具有 CSS1 兼容性的站点时,我看到图像应该在的位置损坏,即使图像不应该显示(显示:无)。
知道如何隐藏损坏的图像图标吗?
注意:我不想加载空图像。我试过 width 和 height= 1px 或 0px 。没用。指定 src="" 也会给出空图像图标。
编辑:我找到了解决方案:将 style="display:none" 添加到 img 定义(不在 CSS 中)
php - img src 不适用于 php 变量
您好,img src 实际上位于不同的目录 /images
我知道这可能非常简单,但我已经花了一个小时在上面,什么也没做。该页面有效,但不显示目录。请帮助菜鸟。我把a href前面的<去掉,img src不能让页面显示
tinymce - 在电子邮件中,图像(img)源(src)标签被重写为相对链接。怎么修?
我正在发送基于 html 的电子邮件,并且每次发送图像 src 标签和一些锚 href 标签都被修改为相对 url。
更新 2:这发生在电子邮件正文生成和发送到它到达我的收件箱之间。
更新:我在 LAMPP 服务器上使用 Postfix。此外,我正在使用 Zend_Mail 发送电子邮件。
例如,我有一个链接:
它被重写为:
什么会导致这种情况发生,如何纠正?
电子邮件标题:
要发送的原始内容:
发送的内容:
javascript - Variable for img src=
I have a question. Firstly, I am not going to pretend that I know what I am talking about here. I am a newbie to http and JavaScript.
I think my question may be answered in this post IMG SRC tags and JavaScript but I thought I would explain the exact thing I am trying to achieve in case there is an easier way.
I have a webpage, I want to display an image on it. Only thing is, the image is coming from an automated system monitor, the image is automatically generated each day and placed in a new directory depending on date.
e.g. On April 4 = "http://host/partition/2009/apr/04/cpu.gif"
e.g. On April 5 = "http://host/partition/2009/apr/05/cpu.gif"
To facilitate this, I have created some basic JavaScript to give me the date in the format I need it. I have all that working. Now I just want to use that variable I created to show the image.
I have the JavaScript code stored in a function called displaydate()
If I do this <script language="JavaScript"> displaydate() </script>
I see
"http://host/partition/2009/apr/05/cpu.gif" and that is correct.
Now how do I display this on the site correctly?
P.S. I have read a lot of pages on this and been trying a lot of things, but have had no luck so far. Any help, would be much appreciated.
php - 将 Img 源与 php 变量一起使用?
我的 detailansicht.php 中有以下代码:
但我认为img标签一定有错误。每次我尝试打开页面时,他都会向我显示一个错误:“解析错误:语法错误,第 123 行 bla/bla/include/detailansicht.php 中的意外 T_ELSE”(第 123 行是 else 标记为粗体)。我尝试了几种方法,但我总是得到这个错误。如果有人可以帮助我,那就太好了。
-斯塔布兹
jquery - 我在使用 Jquery 更改点击事件时遇到问题
我正在尝试在单击图像时交换图像......到目前为止,这是我的 jquery,但它不工作。
下面是我的 HTML 示例
任何帮助,将不胜感激!
javascript - 我的脚本 src URL 是什么?
是否有一种简单可靠的方法来确定当前正在执行的 JavaScript 文件(在网页内)的 URL?
我对此的唯一想法是扫描 DOM 中的所有脚本src
属性以查找当前文件的引用方式,然后通过将其应用于document.location
. 任何人都有其他想法,是否有一些我完全忽略的超级简单方法?
更新:通过 DOM 访问的脚本元素已经有一个src
包含完整 URL 的属性。我不知道这是多么普遍/标准,但或者您可以使用getAttribute("src")
它将返回 [X]HTML 中的任何原始属性值。
javascript - 通过 SRC 属性将 vars 传递给 JavaScript
在我的 HTML 文件中,我已链接到 JS:
我的 JS 可以像这样直接读取这个 var 的值吗?
这不起作用,FireFox 错误控制台显示“未定义配置”。如何读取通过 JS 文件中的 src 属性传递的变量?就这么简单吗?
php - 使用 PHP 抓取完整的图像 src
我正在尝试用 php 抓取 img src,我可以得到很好的 src,但是如果 src 不包含完整路径,那么我就不能真正重用它。有没有办法使用php获取图像的完整路径(如果您使用右键菜单,浏览器可以获取它)。
IE。如何在以下两个示例之一中获得包含域的完整路径?
谢谢,
艾伦