虽然不知道有没有这样的事件,单对兼容性来讲,肯定是不兼容的如果你真的想实现类似删除的功能,你完全可以去模拟,同时消除自身所带的那个删除样式比如下面的代码,点击删除,其实就是span的点击事件触发,知道了如此,你就可以做你先做的其他事情<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
input::-ms-clear{display:none;}
.text{position:relative;height:32px; width:200px;}
.text input{float:left;;height:20px;line-height:20px; width:195px;margin:0;padding:5px 0 5px 5px; border:solid 1px #ccc;}
.text span{position:absolute;right:0; line-height:32px;height:32px; cursor:pointer;}
</style>
<script>
</script>
</head><body>
<div class="text">
<input type="text"   />
    <span>&times;</span>
</div>
</body>
</html>