3


我以前曾问过这个问题,并试图多次解决它,但没有运气。
作为一个在 javascript 方面经验很少的非程序员,
我想要一个书签或类似的东西来帮助我用图像链接指向的原始(全尺寸)图像替换页面上的所有图像。例如,如果我单击链接图像,它将带我进入全尺寸图像,但我希望在页面上显示全尺寸图像。

以下是网站代码的示例:

<a href="http://www.diyphysics.com/wp-content/uploads/2012/02     Multiplier_schematic.jpg">
<img class="aligncenter wp-image-627" title="Multiplier_schematic" src="http://www.diyphysics.com/wp-content/uploads/2012/02/Multiplier_schematic-1024x205.jpg" alt="Schematic of Dual-Polarity High-Voltage Cockroft-Walton Multiplier by David and Shanni Prutchi" width="614" height="123"/>
</a>

我希望它是:

<img class="aligncenter wp-image-627" title="Multiplier_schematic" src="http://www.diyphysics.com/wp-content/uploads/2012/02/Multiplier_schematic.jpg" alt="Schematic of Dual-Polarity High-Voltage Cockroft-Walton Multiplier by David and Shanni Prutchi"/>

宽度和高度限制已被删除。

例如,这个网站
http://www.pocketmagic.net/?p=802
有很多微小的低分辨率图像显示为链接,我希望书签用高分辨率图像替换所有这些图像他们被指向。这样我可以将页面保存为一个整体,或者将其导出...

谢谢 !

编辑:1.@Frosco,我试过了,但我对 JS 的了解很少,我哪儿也去不了。
2. @PhD,应该是带有 javascript: 协议的小册子。面向用户,不适合 Web 开发人员。

已解决:感谢约翰,我想通了,

这是 JS 小书签,以防有人感兴趣:

javascript:(function(e,a,g,h,f,c,b,d){if(!(f=e.jQuery)||g>f.fn.jquery||h(f)){c=a.createElement("script");c.type="text/javascript";c.src="http://ajax.googleapis.com/ajax/libs/jquery/"+g+"/jquery.min.js";c.onload=c.onreadystatechange=function(){if(!b&&(!(d=this.readyState)||d=="loaded"||d=="complete")){h((f=e.jQuery).noConflict(1),b=1);f(c).remove()}};a.documentElement.childNodes[0].appendChild(c)}})(window,document,"1.3.2",function($,L){$('a img').each(function(index) {    var currentElement= $(this);    var anchor = currentElement.parent();    var highResSource = anchor.attr("href");    var newImage = "<img src='" + highResSource + "'/>" +"</div>";    anchor.html(newImage);});});
4

2 回答 2

0

这样的事情应该让你开始:

$('a img').each(function(index) {
    var currentElement= $(this);
    var anchor = currentElement.parent();
    var highResSource = anchor.attr("href");
    var newImage = "<img src='" + highResSource + "'/>";
    anchor.html(newImage);
});​
于 2012-07-05T02:46:31.220 回答
0

你可以试试.unwrap()

$('img').each(function() {
   var $this = $(this);
   if ($this.attr('src') === $this.parent('a').attr('href')) {
       $this.unwrap();
   }
});
于 2012-07-05T02:49:49.353 回答