php:
<div class="tb-module tshop-um tshop-um-myJs"> <div class="content"> <div class="hd"> <h4>JS模板测试模块</h4> </div> <div class="bd"> <button class="btn">点我吧</button> <p></p> </div> </div> </div>
CSS:
.tshop-um-myJs{ width:948px; border:1px solid #ccc; margin-bottom:20px; } .tshop-um-myJs .hd{ border-bottom:1px solid #ccc; height:30px; text-align:center; margin-bottom:20px; line-height:30px; background:#f5f8fc; font-size:14px; } .tshop-um-myJs .bd button{ margin:10px 45%; width:60px; } .tshop-um-myJs .bd p{ color:red; heigth:20px; line-height:20px; width:120px; margin:20px auto; }
JS:
console.log('开始喽...'); var DOM = KISSY.DOM, Event = KISSY.Event, btn = DOM.query('.btn'); console.log(btn); Event.on(btn[0],'click',function(){ DOM.text('p','哈哈,你得到了它!') });