点击叉号关闭界面css怎么写

html-css019

点击叉号关闭界面css怎么写,第1张

栗如窗口最外层class名为 closed 则这么写 $(document).ready(function(){ $('.closed').click(function(){$(this).hide()})})记得头部引入 jQuery库

这个得用Html做的

<form action="" method="get">

您喜欢的水果?<br />

<label><input name="Fruit" type="checkbox" value="0" />苹果 </label>

<label><input name="Fruit" type="checkbox" value="1" />桃子 </label>

<label><input name="Fruit" type="checkbox" value="2" />香蕉 </label>

<label><input name="Fruit" type="checkbox" value="3" />梨 </label>

</form>

<img src="image path" onerror="this.src='default image path'" />

间接的一种实现方式,单纯的使用CSS是做不到的,这么写如果图片存在的话就显示src里面的图片,如果src的图片不存在或读取错误,就会执行onerror里面的js代码,实现默认图片.

希望能帮到你