摘要:
1 select a.name as 触发器名,b.name as 表名, 2 case a.is_disabled when 0 then '启用' when 1 then '禁用' else '未知错误' end as 状态 3 from sys.triggers a,sys.sysobjects b 4 where a.parent_id=b.id and a.type='TR' and ... 阅读全文
摘要:
一、属性操作 1、获取属性和设置属性 例如下jQuery代码: var $para=$("p"); //获取<p>节点 var p_txt=$para.attr("title"); //获取<p>元素节点属性title var id = parseInt($("img").parent().prop 阅读全文