发布时间:2014-03-27 06:42:16
js获取客户端网卡的IP地址、MAC地址的方法。代码: js获取客户端网卡的IP地址与MAC地址---www.jbxue.com ......【阅读全文】
发布时间:2014-03-27 06:40:01
jquery检测input checked 控件是否被选中的方法。jquery检测input checked 控件是否被选中 js部分 function tongyianniu(){ var gouxuan=$('input[type=checkbox]').is(':checked'); alert(gouxuan); }html部分 <input type="button" id="bt.........【阅读全文】
发布时间:2014-03-06 06:16:21
js时间比较示例,代码简单,运行后可以看到结果。代码:<html> <head> <script language="javascript" type="text/javascript"> /** 日期比较 **/ function compareDate(strDate1,strDate2) &.........【阅读全文】
发布时间:2013-05-15 07:02:27
JS判断只能是数字和小数点0.不能输入中文1)<input onpaste=”return false;” type=”text” name=”textfield” style=”width:400px; ime-mode:disabled” value=””>2)<script>function chkIt(frm){if (frm.n1.value.length>0&&frm.n1.value.match(/[\x01-\xFF]*/)==false){alert(‘n1不能输入中文!')frm.n.........【阅读全文】
发布时间:2013-05-15 06:44:16
FCKeditor内容是否为空在提交表单时一定要判断的,分享二个方法。方法1,点击(此处)折叠或打开function checkFCK(key){var oEditor=FCKeditorAPI.GetInstance(key);var content=oEditor.GetXHTML(true);cont.........【阅读全文】