using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static v...
分类:
其他好文 时间:
2015-01-07 10:50:12
阅读次数:
113
在android的sdk中有讲,“This is the interface for text whose content and markup can be changed (as opposed to immutable text like Strings).”这表明Editable 是个借口,...
分类:
移动开发 时间:
2015-01-07 10:45:21
阅读次数:
194
编辑框中加图片代码如下: mSubjectDetailView = (TextView) findViewById(R.id.subject_detail); CharSequence text = "如图所示★,dsfdsfdddd,如果fdsfs★东东...
分类:
移动开发 时间:
2015-01-07 10:37:55
阅读次数:
165
第一种:静态数据$('#THChartDiv').highcharts({ chart: { type: 'spline' }, title: { text:过程线'}, xAxis: { title: { text: ...
分类:
Web程序 时间:
2015-01-07 00:22:35
阅读次数:
424
/*三行分别是字体粗细(整百数字),字体样式,字体阴影*/ *{font-weight:500!important;} *{font-family: "Microsoft Yahei", "Microsoft Yahei" !important; } *{text-shadow:0.01em 0.01em 0.01em #999999 !im...
分类:
其他好文 时间:
2015-01-06 23:21:42
阅读次数:
489
_text:00036DB5 push ebp__text:00036DB6 mov ebp, esp__text:00036DB8 push ebx__text:00036DB9 ...
分类:
其他好文 时间:
2015-01-06 22:56:57
阅读次数:
223
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
一个程序一般分为3段:text段,data段,bss段text段:就是放程序代码的,编译时确定,只读,data段:存放在编译阶段(而非运行时)就能确定的数据,可读可写就是通常所说的静态存储区,赋了初值的全局变量和静态变量存放在这个区域,常量也存放在这个区域bss段:定义而没有赋初值的全局变量和静态变量,放在这个区域
一个由C/C++编译的程序占用的内存分为以下几个部分
1、栈区(stack)―...
分类:
编程语言 时间:
2015-01-06 20:06:24
阅读次数:
246
$("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text...
分类:
Web程序 时间:
2015-01-06 19:55:32
阅读次数:
136
一、当网页需要有多个XMLHttpRequest对象时,可以使用Callback 函数,callback 函数是一种以参数形式传递给另一个函数的函数。Let AJAX change this text通过 AJAX 改变内容 上例中,在myFunction()中调用loadXMLDoc函数,传...
分类:
Web程序 时间:
2015-01-06 19:42:05
阅读次数:
185