javascript jquery基本用法 增删改查

来源:互联网 发布:网络赚钱项目有哪些 编辑:程序博客网 时间:2024/03/29 20:06

if (confirm("你确定要删除吗?")){
  $.post("${base}/admin/spfacil/delete.htm?type=${type!}&id="+id,{'time':new Date().getTime() },function(json){
    if(json.success){
    alert("删除成功");
    window.location.href="${base}/admin/spfacil/list.htm?type=${type!}";
   }else{
    alert("删除失败"); 
   }
  });
  return true;
 }else{
  return false;
 } 

 

 

//新增

$(function(){
 $("#aform").validate();
})
function save(){
 if($("#aform").validate().form()){
  $("#aform").ajaxSubmit({
   type:'post',
   success:function(json){
    if(json.success){
     art.dialog.tips("添加成功!");
     window.location.href="${base}/admin/notice/list.do"
    }else{
     art.dialog.tips("添加失败,请刷新页面重新添加!");
    }
   } 
  });
 }
 return false;
}

 

 

要想获取某个radio的值有以下的几种方法,直接给出代码:

1、

$('input[name="testradio"]:checked').val();

2、 

$('input:radio:checked').val();

3、 

$('input[@name="testradio"][checked]');

4、 

$('input[name="testradio"]').filter(':checked');

差不多挺全的了,如果我们要遍历name为testradio的所有radio呢,代码如下

 

1.$('input[name="testradio"]').each(function(){
2.alert(this.value);
3.});

如果要取具体某个radio的值,比如第二个radio的值,这样写 

 

1.$('input[name="testradio"]:eq(1)').val()

 

<html>
<head>
<script type="text/javascript" 
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script
 type="text/javascript">
$(function(){
$('#go').click(function(){
var radio = $('input[name="testradio"]').filter(':checked');
if(radio.length)
alert(radio.val());
else
alert('请选择一个radio');

});
$('#go2').click(function(){
$('input[name="testradio"]').each(function(){
alert(this.value);
});
})
$('#go3').click(function(){
alert($('input[name="testradio"]:eq(1)').val());
})
})
</script>


</head>


<body>
<input type="radio" name="testradio" value="jquery获取radio的值" 
/>jquery获取radio的值<br /> <input type="radio" name="testradio"
 value="jquery获取checkbox的值" />jquery获取checkbox的值<br /> 
<input type="radio" name="testradio" value="jquery获取select的值" 
/>jquery获取select的值<br />
<button id="go">选中的那个radio的值</button>
<button id="go2">遍历所有radio的值</button>
<button id="go3">取第二个radio的值</button>
</body></html>


0 0
原创粉丝点击