1
<p>点击按钮修改图片为黑白色(100% 灰色)。</p>
2
<button onclick="myFunction()">点我</button><br>
3
<img id="myImg" src="/examples/pineapple.jpg" alt="Pineapple" width="300" height="300">
4
<p><strong>注意:</strong> Internet Explorer 或 Safari 5.1 (及更早版本) 不支持该属性。</p>
5
<script>
6
function myFunction() {
7
document.getElementById("myImg").style.WebkitFilter = "grayscale(100%)"; // Chrome, Safari, 和 Opera
8
}
9
</script>