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