php100学习总结

1.Smarty的配置

include_once ("Smarty/Smarty.class.php"); // 包含 smarty 类文件
$ smarty = new Smarty (); // 建立 smarty 实例对象 $smarty
$ smarty -> config_dir ="Smarty/Config_File.class.php";  // 目录变量
$ smarty -> caching =false; // 是否使用缓存,项目在调试期间,不建议启用缓存
$ smarty -> template_di r = "./templates"; // 设置模板目录
$ smarty -> compile_dir = "./templates_c"; // 设置编译目录
$ smarty -> cache_dir = "./smarty_cache"; / / 缓存文件夹
//----------------------------------------------------
// 左右边界符,默认为 {} ,但实际应用当中容易与 JavaScript 相冲突
//----------------------------------------------------
$ smarty -> left_delimiter = "{";
$ smarty -> right_delimiter = "}";

Smarty的应用:

$ smarty-> assign("模板变量", "值(数组/变量)");
$ smarty-> display("模板名称"); 


2、Jquery选择器的各种用

$(this) 当前元素
$("p") 所有 <p> 元素
$("input") 所有 input 元素
$(".intro") 所有 class= intro 的元素
$("p.intro") 所有 class="intro" <p> 元素
$("#intro") id="intro" 的第一个元素
$("ul > li") ul 下的所有 li 节点
$("ul li:first") 每个 <ul> 的第一个 <li> 元素
$("[href$='.jpg']") 所有带有以 ".jpg" 结尾的 href 属性的属性
$("div#intro .head") id="intro" <div> 元素中的所有 class="head" 的元素
$(li[a:contains('Register')]") 内容包含 Register <a> 元素
$("input[@name=bar]") name bar <input> 元素
$("input[@type=radio][@checked]") type radio <input> 元素
$(“li”).not(“ul”) li 下没有包含 ul 节点的节点元素
$("span[@id]") 包含 id 属性的 <span> 元素
$("[@id=span1]") id span1 的节点元素


Jquery事件器的介

$(元素). 事件( 事件属性);
$(selector).click() 被选元素的点击事件
$(selector).dblclick() 被选元素的双击事件
$(selector).focus() 被选元素的获得焦点事件
$(selector).mouseover() 被选元素的鼠标悬停事件
$(selector).css(); 被选元素的CSS事件
$(selector). hide(); 被选元素的隐藏事件
$(selector). show( 'slow' ); 被选元素的显示事件
……

Dom节点操
$(“a”).addClass(“red”)  为所有<a>增加class=”red”
$(“a”).removeClass(“red”)  为所有<a>去掉class=”red”
$(“li”).append(“BB!”)  为<li>增加”BB!”innerHTML

执行事
//hover 是在执行完第一个函数后再执行第二个
$(“p”).hover(function(){
  $(this).addClass("hover");
},function(){
  $(this).removeClass("hover");
});
//toggle 第一次点击执行第一个函数,再点击执行第二个
$(“p”).toggle(function(){
$(this).addClass("selected");
},function(){
  $(this).removeClass("selected");
});

你可能感兴趣的:(JavaScript,jquery,PHP,function,Class,input)