如何编写客户端javascript来获取图像源?
答案 0 :(得分:5)
页面上的图片?
您可以使用jQuery执行此操作:
<body>
<!-- your content including the image -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var myimg = $('img[src="/some/path/to/img.jpg"]');
});
</script>
</body>
这会使用tag-selector
(docs)和attribute-equals-selector
(docs)来获取img
匹配所需来源的src
元素。
答案 1 :(得分:0)
使用JQuery。
$( “IMG [SRC = 'imageurl.jpg']”)