自动添加“alt”属性到页面上的每个图像
我需要将 alt
属性添加到每个网页上的每个图像。问题是其中一些网页上有数百图像。
任何人都可以建议一种使用 JavaScript 或 jQuery 的方法,对于页面上的每个图像,将图像的名称(减去扩展名)复制到新的 alt
属性吗?
之前:
<img src="android.jpg width="100" height="50" />
之后(排除“.jpg”):
<img src="android.jpg width="100" height="50" alt="android" />
I have a requirement to add the alt
attribute to each of the images on each of my web pages. The problem is that there are hundreds of images on some of those web pages.
Can anyone suggest an approach using JavaScript or jQuery that, for each image on a page, copies the name of the image (minus the extension) to a new alt
attribute?
Before:
<img src="android.jpg width="100" height="50" />
After (exclude ".jpg"):
<img src="android.jpg width="100" height="50" alt="android" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 jQuery 中:
您可以先询问 alt 属性是否不 已经存在,添加:
In jQuery:
You could ask before if alt attribute doesn't already exist by adding:
这是一种 JavaScript 方法:
页面加载后运行函数
runScript()
!Here is a JavaScript approach:
Run the function
runScript()
once the page is loaded!该脚本可以帮助您处理您的工作。它将在 alt 属性中附加图像的文件名
This script can help you to get your work handled. It will append the filename of image in alt attribute