如何使用javascript或ajax在其他按钮上单击更改按钮的颜色

时间:2012-08-06 06:53:38

标签: javascript ajax

我想通过点击g.php上的按钮来更改页面s.php上的按钮颜色。 g.php已包含s.php。那么,有可能吗?如果你回答我,我将非常感谢你。

3 个答案:

答案 0 :(得分:1)

要在javascript函数中更改按钮的颜色,请使用以下代码:

document.getElementById("button").style.background='#000000';

答案 1 :(得分:1)

试试这个,

$("#button1id").click(function(){
   $("#button2id").css("color","red");
})

答案 2 :(得分:0)

如果您在同一页面中呈现了这两个按钮,请添加一些标识符,例如<button id="btn1" /> <button id="btn2"/>,然后使用例如jQuery框架并编写此代码$(document).ready(function(){ $("#btn1").on("click",function(){ $("#btn2").css("background-color","yourcolor")}); });

编辑:对不起我的代码中有错误我已经改变了}))}},无论如何这里是工作的exapmle

http://jsfiddle.net/t5YRT/