特性的定义:公共语言运行时允许添加类似关键字的描述声明,叫做attribute,它对程序中的元素进行标注,如类型、字段、方法、和属性等。attribute和.NetFramework文件的元数据保存在一起,可以用来在运行时描述你的代码,或者在程序运行的时候影响应用程序的行为。 定制特性attr...
分类:
其他好文 时间:
2014-06-28 19:51:02
阅读次数:
229
各种进度条属于 ProgressBar的子类Sytle:水平风格:Horizontal小风格:Small大风格:Large反向风格:Inverse小反向风格:Small.Inverse大反向风格:Large.Inverse设置style: style="?android:attr/progressB...
分类:
移动开发 时间:
2014-06-27 22:54:27
阅读次数:
226
$("[name='checkbox']").attr("checked",'true');//全选$("[name='checkbox']").removeAttr("checked");//取消全选$("[name='checkbox']:even").attr("checked",'true'...
分类:
Web程序 时间:
2014-06-27 20:30:19
阅读次数:
184
使用jquery操作iframe1、 内容里有两个ifameleftiframe中jQuery改变mainiframe的src代码:$("#mainframe",parent.document.body).attr("src","http://www.radys.cn")2、 如果内容里面有一个ID...
分类:
Web程序 时间:
2014-06-26 00:03:47
阅读次数:
229
功能需求是这样的,两个radio:男和女,一个button:重置。启动页面默认选中男,在用户选择女之后又点击重置按钮,需要恢复到默认状态。男女重置我的js代码是这样的:$("#reSet").click(function() { $("input[name='sex']:first").attr(....
分类:
Web程序 时间:
2014-06-25 16:31:06
阅读次数:
173
------------------------------------------------------checkbox的属性选择判断:<scripttype="text/javascript">
$(function(){
alert("start");
alert($(".parentchack").attr("checked"));
if($(".parentchack").attr("checked")=="checked"){
alert("true");
}else{..
分类:
Web程序 时间:
2014-06-25 06:23:09
阅读次数:
337
PDO如何连接newPDO("mysql:host=localhost;dbname=php100","root", “ ");默认这个不是长连接,如果需要数据库长连接,需要最后加一个参数:array(PDO::ATTR_PERSISTENT => true)变成这样:newPDO(“连接信息”, ...
分类:
数据库 时间:
2014-06-23 06:03:51
阅读次数:
408
typedef struct hiVENC_ATTR_H264_CBR_S
{
HI_U32 u32Gop;
HI_U32 u32StatTime;
HI_U32 u32ViFrmRate;
HI_FR32 fr32TargetFrmRate;
HI_U32 u32BitRate;
HI_U32 u32FluctuateLevel;
} VENC_ATTR_H264_CBR_S;...
分类:
其他好文 时间:
2014-06-22 21:26:42
阅读次数:
429
//防止页面进行跳转
$(document).ready(function(){
$("#submit").click(function(){
var str_data=$("#form1 input[type=text]").map(function(){
return ($(this).attr("name")+'='+$(this).val());
})...
分类:
其他好文 时间:
2014-06-22 16:04:47
阅读次数:
200
jquery禁用输入内容
$(function(){
$("#name").attr("disabled","disabled");
$("#note").attr("disabled","disabled");
$("#submitBtn").attr("disabled","disabled");
})
姓名:
说明:
提交...
分类:
Web程序 时间:
2014-06-22 09:45:37
阅读次数:
273