I use the Elicpse IDE to develope the ansdroid app.Sometime encounter the messy code in the Elicpse
One solve method is that to fix the Ecicpse's enCoding setting:
click "Windows->Preference...
分类:
其他好文 时间:
2014-06-19 09:57:22
阅读次数:
211
1.open your key chain access.2.on top left corner
unlock the key chain (if it is locked).3.click system from top left
corner.4.then click your distrib...
分类:
其他好文 时间:
2014-06-16 09:46:12
阅读次数:
220
1. Microsoft.SharePoint.dllCreate EventFiring.cs 1.Right-click on the project, select Add and click on New Item. 2.In the templates pane, select Class...
分类:
其他好文 时间:
2014-06-15 23:35:26
阅读次数:
277
根据源码所见,移动端为了将将单击事件更加灵敏,所以现在的JQM,ST...框架都将JS单击事件封装成tap,或者touch或者touchstart事件,其实现本质是将click触发多次,以打成移动端触屏灵敏的效果.所以这里如果使用手机浏览器访问你的st,或者jqm项目,就得使用js修改成click事...
分类:
其他好文 时间:
2014-06-15 21:59:07
阅读次数:
933
需要点击图片将套组发布, 页面代码:Html代码pubed.pngnopub.png"onclick="changeToClose(,$(this));changeToOpen(,$(this));"/> 在套组发布之后, 需要改变下次点击的事件调用的方法。 使用:img.click( functi...
分类:
Web程序 时间:
2014-06-15 20:57:09
阅读次数:
391
$(document).ready(function(){ // 切换样式 $("#saturday > li > a").click(function(){ var thisobj = $(this).html(); $("#saturday").find(...
分类:
Web程序 时间:
2014-06-14 23:52:34
阅读次数:
408
// 通过 getElementsByTagName 获得都有 input 控件
var inputs =document.getElementsByTagName("input");
// 为第0个button绑定onclick事件,alert一下
inputs[0].onclick = function(){
alert("我测试一下");
}...
分类:
Web程序 时间:
2014-06-14 00:48:25
阅读次数:
350
换成:用$("#myBtn").click(function(){...//判断验证});表单提交js:function
formSubmit(){if(flag=="1"){$("#form").submit();}else
if(flag=="2"){$("#form").attr("actio...
分类:
其他好文 时间:
2014-06-13 18:44:05
阅读次数:
183
客户区坐标位置clientX和clientY保存着鼠标指针在视口中的水平位置坐标和垂直位置坐标(显示出页面的部分叫做客户区,坐标信息不包括页面的滚动距离)var
div=document.getElementById("myDiv");EventUtil.addHandler(div,"click"...
分类:
编程语言 时间:
2014-06-12 17:19:46
阅读次数:
332