摘要:
页面加载完毕后调用js方法进行布局操控 已实验 $(function(){ var check1 = $("[id$=SMS]").is(':checked'); var bl=$("input[id='SMS']").is(":checked"); //alert(bl) //判断改变属性 if 阅读全文
摘要:
oracle 中修改比较安全的方法;(pl/sql) 第一种方法: select * from temp where id=9 for update; 第二种方法: select t.*,rowid from temp where id =9; 这两种方法都可以在查询结果中,点击解锁(编辑数据)进行 阅读全文
摘要:
oracle存储过程、声明变量、for循环 1、创建存储过程 create or replace procedure test(var_name_1 in type,var_name_2 out type) as --声明变量(变量名 变量类型) begin --存储过程的执行体 end test; 阅读全文