我对 jQuery 中的 if 条件有点困惑。我想将“if”条件放入 jQuery 函数中。这是正确的方法吗?还是比这更好的解决方案?
我想把这个方法放到下面的 jQuery 函数中——我怎样才能实现它?
if($(this).attr("id")=='emptys'){
data = { msg : datas } //this is element inside of ajax
}
else{
data = { pid : datas } //this is element inside of ajax
}
我想把这个方法放在下面的函数中
<script>
$(document).ready(function(){
$('.but').click(function(){
var datas = $(this).attr("id");
$.ajax({
type: 'GET',
url:"addcart.php",
data : { pid : datas },
success:function(result){
$("#div1").html(result);
}});
});
});
</script>