最新回答 / qq_Rainy小迪_0
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Document</title> <style> #con{ width:400px; height:400px; background-color:#f00; color:#000;} </style> </head><body><div id=...
2017-10-26
最新回答 / 玄众妙
因为你根本没有改变txt的值var txt = document.getElementById("txt");var oldtxt = null;txt=oldtxtif(message == true){ txt = oldtxt;}试试这样其实我更建议你用if(message == true){var txt = document.getElementById("txt"); txt.removeAttribute('style');//移除txt的样式元素}这种方式进行取...
2017-10-19
最新回答 / 赵成沙
你第十行里 contxt();这已经在script里面调用过了。 在15行里<input type="button" value="点击我" onclick=" " /> onclick=" "," "里面可以写函数调用!
2017-10-17