HTML客户端
digilover
这个作者很懒,什么都没留下…
展开
-
页面刷新
自动刷新页面的实现方法总结:1)<meta http-equiv="refresh"content="10;url=跳转的页面">例如:<meta http-equiv="refresh" content="10;url=${pageContext.request.contextPath}/index.jsp">10表示间隔10秒刷新一次2)<sc原创 2012-04-28 11:33:14 · 81 阅读 · 0 评论 -
readonly和disabled
<input type=”text /password/…” readonly=”true”/disabled="disabled">readonly表示控件是只读的,但服务器端可以通过request.getParameter获取到提交过来的值,disabled表示提交到服务器端的数据,服务器端获取不了数据。<!--EndFragment-->...原创 2012-05-04 09:22:02 · 88 阅读 · 0 评论 -
点评无刷新评论(tBodies[0])
点评无刷新评论<script type="text/javascript"> function addComment(){ var name = document.getElementById("name").value; var comment = document.getElementById("comment").value; var table...原创 2012-05-04 09:06:00 · 822 阅读 · 0 评论 -
JS 顺序问题
<script type="text/javascript"> function initEvent(){ var inputs = document.getElementsByTagName("input"); for(var i=0;i<inputs.length;i++){ var input = inputs[i];input.oncl...原创 2012-05-04 08:52:58 · 105 阅读 · 0 评论 -
(事件源对象)效果相同
<input type="button" value="click1" onclick="alert(event.srcElement.value)"><br>//弹出对话框中显示click1<input type="button" value="click2" onclick="alert(this.value)"原创 2012-05-03 08:59:47 · 79 阅读 · 0 评论 -
在事件响应函数调用的函数中就不能通过this来获得事件对象了,必须传参数,比如下面的...
<script type="text/javascript"> function buttonClick(){ alert(this.value);//会弹出undefined }</script><input type="button" value="click3" onclick="buttonClick()">&a原创 2012-05-03 08:59:25 · 215 阅读 · 0 评论 -
评分控件
<script type="text/javascript"> function indexOf(arr,element){ for(var i=0;i<arr.length;i++){ if(arr[i]==element){ return i } } return -1; } function initEvent()...原创 2012-05-03 08:59:09 · 85 阅读 · 0 评论 -
图片随着鼠标移动而移动的效果
<script type="text/javascript">document.onmousemove=function(){var x = window.event.clientX;//clientX表示鼠标在X轴上的移动坐标var y = window.event.clientY; var divFly = document.getElementById("d...原创 2012-05-03 08:58:55 · 383 阅读 · 0 评论 -
可变参数
<script type="text/javascript"> function testparams(){ var params=""; for(var i=0;i<arguments.length;i++){ params += " " + arguments[i]; } alert(param...原创 2012-04-29 09:10:16 · 87 阅读 · 0 评论 -
将浏览器中传递过去的字符串进行URI编码
encodeURI将浏览器中传递过去的字符串进行URI编码,浏览器中默认采用utf-8对中文编码,与jsp页面中设置的字符编码无关,decodeURI是其解码函数<script type="text/javascript"> var strURI=encodeURI("http://www.digi.cn/in.jsp?name=天逸&pass= aa"); var st...原创 2012-04-29 09:10:05 · 215 阅读 · 0 评论 -
函数名和函数付给一个变量的区别
<script type="text/javascript"> function Person(){ } var person1 = new Person(); person1.name="digi"; person1.age=25; function sayFunc(){ alert(person1.name+":"+person1.age); } p...原创 2012-04-29 09:09:57 · 149 阅读 · 0 评论 -
eval方法是将其内部字符串无条件解析为JS语句来执行
<script type="text/javascript"> function Person(){ } var person1 = new Person(); person1.name="digi"; person1.age=25; eval("alert(person1.name+':'+person1.age);");</scrip...原创 2012-04-29 09:09:44 · 129 阅读 · 0 评论 -
禁止浏览器右击鼠标弹出菜单代码
<script type="text/javascript"> function hideContextmenu(){ window.event.returnValue=false; }</script><body oncontextmenu="hideContextmenu()">或者如下这样也行<script type...原创 2012-04-29 09:09:33 · 149 阅读 · 0 评论 -
reload()和confirm()两window对象自带函数
<script language="JavaScript">document.write(new Date());</script> <input type="button" value="刷新页面" onclick="location.reload()"><input type="button"原创 2012-04-28 14:09:00 · 162 阅读 · 0 评论 -
Location.href
<input type="button" value="转到V512" onclick="f1()"><script language="JavaScript">function f1(){location="http://www.v512.com";或者location.href="http://www.v512.com&原创 2012-04-28 14:08:11 · 92 阅读 · 0 评论 -
关闭当前网页和document.write()
<body> <script type="text/javascript">document.write("<h1>hello world</h1>"); </script><h1>欢迎访问V512!</h1><hr>原创 2012-04-28 14:06:48 · 207 阅读 · 0 评论 -
表单验证
<script type="text/javascript" src="system/common/Util.js"></script><script language="JavaScript">function _check(){var valid = true;var username = document.getElementById(&quo原创 2012-05-04 09:22:50 · 86 阅读 · 0 评论