我有以下代码,我想突出显示点击的 div 而不是其他的。我还想从外部页面获取数据并将其加载到目标 div 中……不知道如何将这部分添加到脚本中。目前这就是我所拥有的。
php
<div id="targetdiv"></div>
<div class="item">
for($id=0; $id<10; $id++){
echo '<div class="al-cover slides" id="img'.$id.'" >
<img class="imgs" src="'.$mediapath.'" alt="" onclick="img('.$id.')" data-id="'.$id.'"/>';
</div>';
}
</div>
javascript
var slideIndex = 1;
function img(index) {
show(index);
}
function nextslide(index) {
show(slideIndex += index);
}
function show(index) {
// Get the container element
var selextImg = document.getElementById("img" + index);
$('.items').each(function() {
numItems = $(this).find('.picks').length;
selextImg.style.border = "solid 2px #3cba54";
});
if (index > numItems) {
slideIndex = 1;
index = 1;
}
if (index < 1) {
slideIndex = numItems;
index = numItems;
}
var path = $("#img" + index).find('img').attr('src');
$("#targetdiv").html('<img src="' + path + '" class="fit"/>');
}
长风秋雁