国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁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://eska-fuses.cn/style/download.png) repeat-x;
}

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