我再次更新这个,这只在某些版本的IE中失败了。这是js代码中最后一行的内容。 “$($ NEXTLINK).trigger( '点击');” IE的某些版本无法处理...是否有可能解决这个问题,以确保它适用于所有IE版本?
这是javascript ...
$(".trigger").live('click',function() {
if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; } // to prevent default link to image, event.returnValue = false; for it to work in IE.
var $currentId =$(this).attr('id'); //The Id of the clicked thumbnail
var $newlink = $currentId + '.php'; //The new images in a .php file
var $newcontent = '#' + $currentId + 'box'; //Where to load
var $nextlink = '#' + $(this).next().attr('id'); //The simulated click id
$($newcontent).load($newlink, function() {
$("a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',theme:'light_square',slideshow:3000, autoplay_slideshow: false, hideflash: true, deeplinking:false});
$($nextlink).trigger('click');
});
});
HTML:
<li class="projectitem photo" data-id="id-1">
<div class="grid_1 projectbox">
<div class="boxcontain surf">
<a id="surf" class="trigger" href="img/_MG_8635.jpg"><img class="fade" src="img/thumb_surfbw.jpg" title="Surfing" style="background: url(img/thumb_surfcolor.jpg);" alt="Surfing" /></a>
<a id="surflink" class="hide" rel="prettyPhoto[surfing]" href="img/_MG_8635.jpg" title='<strong>Project: </strong>Photo gallery of my selected surf photos from Hawaii<br><strong>Year: </strong>2011<br><strong>Type: </strong>Photo'><img class="fade" src="img/thumb_surfbw.jpg" title="Surfing" style="background: url(img/thumb_surfcolor.jpg);" alt="Surfing" /></a>
<div id="surfbox" class="hide">blank</div>
<h4>Surfing</h4>
</div></div></li>
所以基本上有两个问题:
为什么在某些IE版本中没有模拟鼠标点击?
为什么它在Firefox中不起作用? (我有一个问题,event.preventdefault在firefox中不起作用,但它现在已经修复,见下文)
答案 0 :(得分:1)
更改
$(".trigger").live('click',function() {
if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; }
到
$(".trigger").live('click',function(event) {
if (event.preventDefault) { event.preventDefault(); } else { event.returnValue = false; }