摘要:
Thinkphp中的pathinfo模式http://serverName/appName/module/action/id/1/pathinfo模式在不考虑路由的情况下,第一个参数会被解析成模块名称(如果启用了分组的话,则依次往后递推),第二个参数会被解析成操作,后面的参数是显式传递的,而且必须成对出现,例如:http://serverName/appName/module/action/year/2008/month/09/day/21/通常的URL里面含有index.php,为了达到更好的SEO效果可能需要去掉URL里面的index.php ,通过URL重写的方式可以达到这种效果,通常需 阅读全文
摘要:
JS分割字符串并放入数组的函数:var InterestKeywordListString = $("#userInterestKeywordLabel").html();var InterestKeywordListArr = [];var t = '';for (var i = 0; i < InterestKeywordListString.length; i++) {var tmp = InterestKeywordListString.charAt(i);if (tmp != '' && tmp != ' 阅读全文
摘要:
js解决弹窗问题实现班级跳转DIV1、js代码如下:'>'>' type="radio" name="rd_class" value='' checked /> ' type="radio" name="rd_class" value='' /> 2、cs文件代码:public DataTable dtPTC = new DataTable();//保存项目 项目分期 班级信息public DataTable dtProject 阅读全文
摘要:
javascript客户端遍历控件与获取父容器对象示例代码1,遍历也面中所有的控件function findControlAll() { var inputs=document.getElementsByTagName("input"); for(j=0;jfunction CheckBoxAll(e){//parentNode 是获取上级属性var obj = e.parentNode.parentNode.parentNode.getElementsByTagName("*");} 阅读全文