PHP
&$aa,其中"&"相当于指针,就是对变量$aa存储地址的引用。
$$aa 表示把$aa 的内容弄成一个变量
例如:$aa="hello";
$$aa 相当于$hello
thinksns 中初始化内容coresociaxAction.class.php
//实例化视图类
$this->view = Think::instance('View');
$this->initSite();
$this->initApp();
$this->initUser();
$this->initUserApp();
$this->initAd();//初始化广告模块
$this->initFooterDocument();
$this->initUcenter();
//控制器初始化
if(method_exists($this,'_initialize')){ $this->_initialize();}
jQuery中.children() 获得匹配元素集合中每个元素的所有子元素。
如果想获取到子元素中的某一个 则可以用 .children()[0] 不过这样获取到的是 object html格式的,需要转换为对象才能继续使用jquery的方法
例如:$($("#focus ul").children()[i]).attr("title")