作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个显示“顶部添加”的按钮,当我单击它时该按钮没有响应。它应该做的是警告它刚刚添加到的变量,但它什么也没做。这是我的代码:
$("button#left").click(function(){
moveLeftId[moveLeftId.length]="-=50px";
alert(moveLeftId);
});
$("button#start").click(function(){
alert("You clicked action!");
var i;
for (i = 0; i < moveLeftId.length; i++) {
$("div#test").animate({
marginLeft: moveLeftId[i]
}, 500);
}
for (i = 0; i < moveTopId.length; i++) {
$("div#test").animate({
marginTop: moveTopId[i]
}, 500);
}
});
/*
$("button#top").click(function(){
moveTopId[moveTopId.length]="+=50px";
});marginTop: moveTopId[i]*/
#test {
width: 100px;
height: 100px;
background-color: #C00;
margin-left: 500px;
margin-top:300px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="test" color="white">Hi</div>
<button id="left">Left add</button>
<button id="start">Action!</button>
<button id="top" onclick="moveTopId[moveTopId.length]='-=50px';
alert(moveTopId);">Top add</button>
<script>var moveLeftId=new Array(["-=50px"]);
var moveBottomId=new Array(["-=50px"]);</script>
如您所见,我尝试将一些代码分离到其他脚本标记中,但这并没有什么区别。我不知道我应该做什么!
提前致谢!
最佳答案
$("button#left").click(function(){
moveLeftId[moveLeftId.length]="-=50px";
alert(moveLeftId);
});
$("button#start").click(function(){
alert("You clicked action!");
var i;
for (i = 0; i < moveLeftId.length; i++) {
$("div#test").animate({
marginLeft: moveLeftId[i]
}, 500);
}
for (i = 0; i < moveTopId.length; i++) {
$("div#test").animate({
marginTop: moveTopId[i]
}, 500);
}
});
/*
$("button#top").click(function(){
moveTopId[moveTopId.length]="+=50px";
});marginTop: moveTopId[i]*/
#test {
width: 100px;
height: 100px;
background-color: #C00;
margin-left: 500px;
margin-top:300px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="test" color="white">Hi</div>
<button id="left">Left add</button>
<button id="start">Action!</button>
<button id="top" onclick="moveTopId[moveTopId.length]='-=50px';
alert(moveTopId);">Top add</button>
<script>var moveLeftId=new Array(["-=50px"]);
var moveBottomId=new Array(["-=50px"]);var moveTopId =new Array(["-=50px"]);
</script>
关于javascript - 按钮没有反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26442565/
我正在尝试将高斯模糊添加到场景中。我正在使用此GLSL着色器:。当您提供图像作为tDiffuse纹理时,它对图像起作用,但我正在尝试将其添加为后处理效果。我试图获取摄影机的renderTarget并将
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我在全球安装了Create Reaction应用程序。然后我就跑了。NPX创建-反应-应用JSX。它安装了大约1460个包的所有包,但没有设置Public和src文件夹。在我的JSX文件夹中,只有1:
我是一名优秀的程序员,十分优秀!