[color=red]以下纯属。。。。[/color]
<style type="text/css">
.cursor_pointer {
cursor:pointer;
}
</style>
<script type="text/javascript">
$(function() {
$('img').click(
function() {
alert("Hello world!");
}
)
.hover(
function(){
$(this).addClass("cursor_pointer");
},
function(){
$(this).removeClass("cursor_pointer");
}
);
}
</script>
<style type="text/css">
.cursor_pointer {
cursor:pointer;
}
</style>
<script type="text/javascript">
$(function() {
$('img').click(
function() {
alert("Hello world!");
}
)
.hover(
function(){
$(this).addClass("cursor_pointer");
},
function(){
$(this).removeClass("cursor_pointer");
}
);
}
</script>