我正在学习 jQuery,我正在练习。 我的任务是:在悬停时突出显示 GridView 行 我在 .aspx 页面中编写了以下代码
<script src="Scripts/HighlightGridViewRow.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#<%=GridView1.ClientID%> tr").hover(
function() {
$(this).addClass("highlight");
},
function() {
$(this).removeClass("highlight");
});
});
</script>
后面的代码中没有 jQuery 特定的代码。
如何将我在 .aspx 页面中编写的 javascript 代码移动到一个单独的 .js 文件中?
提前致谢,
阿肖克库马尔。