单击时将金额添加到背景位置(jQuery)
我对 js 和 jquery 很陌生,所以请耐心等待。
我想更改背景位置,并在单击 #button1 时在 #div1 上添加 1%,并在单击 #button2 时在 #div1 上添加 -1%
我如何在 jQuery 中实现此目的?
另外,奖金问题: 这些将通过 php 动态生成。是否可以在 js 脚本中使用 php 以便 id 正确?
像这样:
$i = 1
while($i <= 5):
$div[$i] = 'div'.$i;
$leftbutton[$i] = 'leftbotton'.$i;
$rightbotton[$i] = 'rightbotton'.$i;
$i++;
endwhile;
否则我也必须学习如何在 js 中创建循环;)
编辑:后续问题:
当我单击按钮时,如何用该值更新文本字段?如果我还想添加向上/向下按钮,我该如何修改它?非常感谢!
提前致谢! -西蒙
I pretty new to js and jquery so please bear with me.
I'd like to change the background-position and add 1% on #div1 while clicking on #button1 and take -1% on #div1 while clicking on #button2
How could i achive this in jQuery?
Alse, bonus question:
These are going to get dynamically generated through php. Is it possible to use php in the js-script so the id's get correct?
like this:
$i = 1
while($i <= 5):
$div[$i] = 'div'.$i;
$leftbutton[$i] = 'leftbotton'.$i;
$rightbotton[$i] = 'rightbotton'.$i;
$i++;
endwhile;
Else i'll have to learn how to make loops in js as well ;)
Edit: Follow up questions:
How can i update a text field with this value as i click the buttons? And how do i modify it if i'd like to add up/down buttons as well? thanks a bunch!
Thanks in advance!
-Simon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
编辑:修正错误。
演示
Like this:
EDIT: Fixed mistakes.
Demo