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>