JavaScript 是一种可以在浏览器中运行的脚本语言,是一种弱语言(相对于C,C#,JAVA而言),只要是计算机语言就会使用到条件判断式,而JavaScript作为一种“弱”语言,它的条件判断常常令人困惑不解,特别是有其它强语言编程经历的人来说,更是不可理喻!高手和无惑的人别取笑,我自己也曾经有一段时间郁闷过。先写一个例子吧: var s = "meizz"; if (s && s==true) {...[ 查看全文 ]
http://www.dragonson.com/doc/ajax.html Ajax内部交流文档 http://info96.k12studio.com/~nio/comments.php?id=242_0_1_0_C 简单地对 Ajax 进行描述介绍 http://www.adaptivepath.com/publications/essays/archives/000385.php Ajax: A New Approach to Web Applications http://jibbering.com/2002/4/httprequest.html Using the XML HTTP Request object http://developer.apple.com/internet/webcontent...[ 查看全文 ]
代码如下: Function IsValidUrl(str) Dim regEx Set regEx = New RegExp regEx.Pattern = "http(s)?://([\w-]+\.)+[\w-]+(/[\w-./?%&=]*)?" IsValidUrl = regEx.Test(str) End Function [ 查看全文 ]
提示:getEmementsByName方法的作用是根据 NAME 标签属性的值获取对象的集合。 样例一html head meta http-equiv="Content-Type" content="text/html; charset=gb2312" title判断单选框或复选框是否选中/title /head body input name="radio1" type="radio" value="test" button onClick="alert('单选项'+(document.getElementsByName('radio1')...[ 查看全文 ]