- 浏览: 4288 次
- 性别:
- 来自: 深圳
最新评论
文章列表
JQuery获取Select选择的Text和Value:
语法解释:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text
3. var checkValue=$("#select_id").val(); //获取Select选择的Val ...
select tid,tname ,rowid from t_temp_test ;
select tid,tname ,max(rowid) from t_temp_test group by tid,tname;
delete from t_temp_test t1 where rowid not in
( select max(rowid) from t_temp_test t2 where t1.tid=t2.tid
and t1.tname=t2.tname);
insert into t_temp_test(tid,tname) values('00 ...
--0.468 4.032
select * from (
select rownum as recordNum,complex.* from(
-- sql
select * from t_3ms_idol_search
)complex
where rownum < 2
-- to
) where recordNum >= 0
-- from
--2.672 6.047
select * from (
select rownum as recordNum,comp ...
grant select on table_name to user_name;
grant update on table_name to user_name;
等操作