把<span>去掉后,就行了,但是我现在不能把<span>去除,下面是个简单的例子,有没有人跟我一样的
<html>
<head>
<script type="text/javascript" src="jquery-1.6.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").bind("click",function(){
alert("heihei")
});
});
</script>
</head>
<body>
<p>this is a dialog</p>
<button disabled="disabled"><span>change</span></button>
</body>
</html>