首页javascripttext_inputJavascript Form - 如何删除在文本输入焦点的背景图象

Javascript Form - 如何删除在文本输入焦点的背景图象

我们想知道如何删除在文本输入焦点的背景图象。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
input[type=text] {
  line-height: 20px;
  font-size: 14px;
  padding: 2px 5px;
  background: url(http://www.w3cschool.cn/style/download.png) repeat-x;
}

input[type=text]:focus {
  background-image: none;
}
</style>
</head>
<body>
  <input type="text">
</body>
</html>