Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种方法可以自动安装 MySQL,而无需使用向导指定 root 密码等。基本上,我需要为最终用户尽可能简单地安装 MySQL。
谢谢
我假设你的意思是窗户。Mysql MSI 安装程序显然有一个安静模式:
http://dev.mysql.com/doc/refman/5.1/en/windows-installer-msi-quiet.html
我会推荐Wampserver。
通过 wampserver 接口管理 mysql 服务器真的很容易,它带有 phpmyadmin。
我正在开发一个在线测验应用程序,它提供了所有问题的列表,当用户单击问题编号时,应显示相应的问题。当用户单击任何问题编号时,应更改问题编号单元格的背景颜色。为此,我的 JS 如下
<script> function changecolor(x) { document.getElementById(x).style.background-color="#4ead3a";