Javascript - 选择正确的图像作为输入值
好的,我在书签中有一个简单的 javascript 函数,可以查找页面上的所有图像,然后在书签中显示它们
for(var i=0; i<img_find.length; i++)
{
if (theImg[i].width > 200 && theImg[i].height > 200)
{
$("#image").append("<img id='photo' height='150' src='"+img_find[i]+"'/>");
$("#width").append("<input type='hidden' value='"+img_find[i]+"' name='story_img'/>");
}
}
。我还有一个 jquery 幻灯片,以便您可以单击“下一步”滚动浏览图像。
有没有办法让用户在幻灯片上查看的当前图像成为我的输入值中的图像?
$('.slideshow').cycle({
prev: '#prev',
next: '#next',
timeout: 0
});
<div id='image' class='slideshow' align='left'></div>
<a href='#' id='prev' style='font-size:10px;'>Previous</a>
<a href='#' id='next' style='font-size:10px;'>Next</a>
谢谢!
Ok, I have a simple javascript function in a bookmarklet that finds all of the images on a page and then shows them in the bookmarklet
for(var i=0; i<img_find.length; i++)
{
if (theImg[i].width > 200 && theImg[i].height > 200)
{
$("#image").append("<img id='photo' height='150' src='"+img_find[i]+"'/>");
$("#width").append("<input type='hidden' value='"+img_find[i]+"' name='story_img'/>");
}
}
I also have a jquery slideshow so you can click next to scroll through the images.
Is there a way to get the current image the user is looking at on the slideshow to be the on that goes in my input value?
$('.slideshow').cycle({
prev: '#prev',
next: '#next',
timeout: 0
});
<div id='image' class='slideshow' align='left'></div>
<a href='#' id='prev' style='font-size:10px;'>Previous</a>
<a href='#' id='next' style='font-size:10px;'>Next</a>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 http://jquery.malsup.com/cycle/int2.html
你只需必须添加一个 before: 函数
As per http://jquery.malsup.com/cycle/int2.html
You just have to add a before: function