public class MainActivity extends Activity {
private EditText inputEditText;
private Button btn;
private TextView showView;
@Override
protected void onCreate(Bundle savedInstanceState) {
s...
分类:
移动开发 时间:
2015-02-03 15:02:42
阅读次数:
131
1,点击事件几种方式:>>1,匿名内部类publicclassMainActivityextendsActivity{privateButtonbtn;privateTextViewtv_show;@OverrideprotectedvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);btn=(But..
分类:
其他好文 时间:
2015-02-03 07:14:21
阅读次数:
185
1 index.jsp
pageEncoding="UTF-8"%>
$(document).ready( function() {
$("#btn_login").click( function() {
var url = 'ajaxLogin';...
分类:
Web程序 时间:
2015-02-02 23:17:22
阅读次数:
277
jQuery Mobile修改button的内容。
使用jQuery Mobile也有一段时间了,最近同事提出,他需要更改button的内容,但是修改不了。我也试着修改了几次,button的内容其实是更改了,但是页面并未刷新。在调试中使用了console.log()方法打印各种日志,再结合api文档,发现button方法可以进行刷新。
打印信息:
更新内容:$('#btn').val("如有...
分类:
Web程序 时间:
2015-02-02 18:11:08
阅读次数:
145
1.总是从ID选择器开始继承。在jQuery中最快的选择器是ID选择器,因为它直接来自于javascript的getelementById()方法。例如:123如果使用 $("#content .input_btn")则会很大的影响jQuery的性能,最快的效率是使用$("#submit")。如果涉...
分类:
Web程序 时间:
2015-01-30 22:29:58
阅读次数:
217
<!doctype?html>
<html>
<head>
<meta?charset="UTF-8">
<title>Document</title>
<style>
.wrap{background:?gray;width:?100px;height:?30px;overflow:?hidden;
/*关键属性*/position:?relative;}
.btn...
分类:
Web程序 时间:
2015-01-30 19:44:51
阅读次数:
283
使用jQueryui = { $close: $('.close') , $pop: $('.pop') , $topopBtn: $('.topop-btn') , $popbtnArea: $('.popbtn-area') };// 绑定打开弹...
分类:
Web程序 时间:
2015-01-30 14:56:54
阅读次数:
178
在一个tableViewCell中有个btn,如何得到它所在的viewcontroller,以便于push出新的viewController?我的思路是传值,但网上有下面这种方法,分享。跟得到某个视图上的子视图思想类似,但之前没有接触过UIResponder,所以没有想到。- (UIViewCont...
分类:
移动开发 时间:
2015-01-29 21:01:42
阅读次数:
177
1、html 代码
物资情况
资金情况
工作总结
2、js代码
$(function() {
gzNeed();
});
function wzNeed(){
$("#btn1").attr("class", "btn btn-normal btn-ok");
$("#btn2").attr("class", "btn b...
分类:
Web程序 时间:
2015-01-29 17:39:13
阅读次数:
132
按钮样式定义
<style>
.btn{display:?inline-block;width:?100px;height:?20px;color:?#fff;font-size:?12px;background-color:?#0033dd;text-align:?center;line-height:?20px;text-decoration:?none;...
分类:
Web程序 时间:
2015-01-28 18:10:31
阅读次数:
163