一个简单的项目
我想建立一个简单的密码生成器且设计精美的网站。 passwordbird 是一个简单的密码生成器,http://www.atebits.com/ 的设计我非常喜欢。我应该在这个项目中使用什么语言?我的主要目标是获得构建网站的经验;我不期望它是完美的。我只是想学习一些新东西并将其应用到我的想法中。
I want to build a website that is a simple password generator and that has a nice design.
passwordbird is a simple password generator and http://www.atebits.com/ has a design that I really like. What languages should I use for this project? My main goal is to gain experience in building websites; I don't expect for it to be perfect. I just want to learn something new and apply it to an idea that I have.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML、CSS 和 JS。下面是一个关于密码生成的 JS 脚本示例: http://javascript.internet.com/passwords/密码生成器.html
祝你好运。
HTML, CSS and JS. Here's an example JS script on password generation: http://javascript.internet.com/passwords/password-generator.html
Good luck.
良好的培训应该是一个基本的 HTML 和 CSS 网站,以及一个用于生成密码的 php 脚本。
我想您能够指定密码的长度和组成等内容,对吧?将所有内容放入表单中并通过 Ajax 将其发送到 php 脚本,获取生成的密码并显示它。对于 Javascript(Ajax) 部分,我将使用 JQuery
Good training would be a basic HTML&CSS site, and a php script to generate a password.
I imagine you would be able to specify things like length and composition of the password right? Throw all that in a form and send it via Ajax to the php script, get the generated password and display it. For the Javascript(Ajax) part, I'd use JQuery