他們我有一個html:使圖像被下載,即使沒有被顯示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title/>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
<style type="text/css">
a.button {
background: url('button.png') repeat-x;
}
a.button:hover {
background: url('button_hover.png');
}
</style>
</head>
<body>
<p><a class="button" href="#">Button</a></p>
</body>
</html>
圖像0當我將鼠標懸停按鈕只被下載。 I know that it is the default browser behaviour.
有沒有辦法強制下載圖片?如果是,如何? (我不想使用JavaScript,但如果沒有其他選擇,我可以使用)。
感謝和抱歉我的英語不好。