这仅适用于 Firefox,我不知道为什么。单击橙色跨度可在每个浏览器中使用。单击选择选项仅适用于 Firefox... 为什么?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function() {
$('.click').click(function() {
alert("clicked");
});
});
</script>
<select>
<option class="click" value="">click</option>
</select>
<br /><br /><br /><br />
<span class="click" style="display:inline-block;width:50px;height:20px;background-color:orange;padding:4px;">click</span>
</body>
</html>