HTML5里的placeholder属性
<!doctype html> <html> <head> <meta charset="utf-8"> <title>HTML5里的placeholder属性</title> <style type="text/css"> ::-webkit-input-placeholder { color:#f00; } ::-moz-placeholder { color:#f00; } :-ms-input-placeholder { color:#f00; } input:-moz-placeholder { color:#f00; } </style> </head> <body> <input type="text" name="first_name" placeholder="你的姓名..." /> </body> </html>