嗨,我正在尝试在 jsp 页面中添加一些 javascript,但这不起作用。下面是我的代码。
<head>
<script type="text/javascript">
$(document).ready(function () {
$(".jsscript").fadeTo(20, 0.6);
$(".jsscript").mouseleave(function () {
$(this).fadeTo(800, 0.6);
});
$(".jsscript").mouseenter(function () {
$(this).fadeTo(320, 1);
});
})
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Gadgets</title>
</head>
这是我的 head 标签中使用的 javascript,下面是在同一页面上找到的图像
<td align="center"><img class="jsscript" src="images/<%=p.getFileName()%>" width="300"/></td>