JSLite / JSLite

与jQuery有着类似的api,让web开发更迅速,下载执行更快、量级更轻,针对现代高级浏览器的JavaScript库。

Home Page:http://jslite.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSLite-touch --- Tap的方法

singod opened this issue · comments

Tap的使用方法

$("#ontouch").on("tap",function(){
    alert("我是 .on(tap) 方式");
    $(this).css({width:"200px",height:"100px",border:"1px red solid"});
})
$("#mytap").tap(function(){
    alert("我是 .tap() 方式");
    $(this).css({width:"300px",height:"30px",border:"1px blue solid"});
})

点击查看Tap方法

@singod 我在写单元测试。

@jaywcjlove 如果这个可以用的话你就收了吧

@singod 等研究到这个地方了,我如果可以用你的哦,其实喔建议你用 pull request ,这样你也是 JSLite 贡献者之一。