如何把函数写到js文件里面去
<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Default.aspx.cs"Inherits="_Defaul...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--如果不要这一行就可以显示出我要的结果。。。。-->
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<a onmouseover="document.all.Layer1.style.visibility='visible'" onmouseout="document.all.Layer1.style.visibility='hidden'">
1234567890</a>
<div id="Layer1" style="width:300px; height:100px; border: 1px solid #ffff88; visibility:hidden;color:GREEN" onmouseover="document.all.Layer1.style.visibility='visible'">11111111</div>
</body>
</html> 展开
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!--如果不要这一行就可以显示出我要的结果。。。。-->
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<a onmouseover="document.all.Layer1.style.visibility='visible'" onmouseout="document.all.Layer1.style.visibility='hidden'">
1234567890</a>
<div id="Layer1" style="width:300px; height:100px; border: 1px solid #ffff88; visibility:hidden;color:GREEN" onmouseover="document.all.Layer1.style.visibility='visible'">11111111</div>
</body>
</html> 展开
展开全部
直接写 不用考虑别的 然后在页面上引用<script type="text/javascript" src="/刚刚写的JS文件.js"></script>
当然了 页面上调用的方法名 还是要与JS文件中一致
当然了 页面上调用的方法名 还是要与JS文件中一致
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把你的函数写在JS文件里
show = function (){
document.all.Layer1.style.visibility='visible';
//document.getElementById("Layer1").style.visibility='visible'这句话应该可以解决你注释中提出的问题
}
然后在页面里写入这句话
<script type="text/javascript" src="/刚刚写的JS文件.js"></script>
然后就可以直接在时间里调用函数show()了
show = function (){
document.all.Layer1.style.visibility='visible';
//document.getElementById("Layer1").style.visibility='visible'这句话应该可以解决你注释中提出的问题
}
然后在页面里写入这句话
<script type="text/javascript" src="/刚刚写的JS文件.js"></script>
然后就可以直接在时间里调用函数show()了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询