How to use if else statement ajax
I have 4 radiobutton r1,r2,r3,r4. And a date input "tanggal".
in my table i have data in row tanggal 11/15/2018, 11/15/2018, 11/15/2018 11/15/2018
row waktu09.00, 09.20, 09.40, and 10.00
with this query I just can disable one radio button r1
when I choose a date 11/15/2018
with value in my database
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val();
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php",
data: {tanggal: tanggalfromfield}
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}
});
})
});
</script>
when i try to use if else statement nothing change and it's not work.
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val(); // AMBIL isi dari fiel NPM masukkan variabel 'npmfromfield'
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php", // file PHP yang akan merespon ajax
data: {tanggal: tanggalfromfield} // data POST yang akan dikirim
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
}
});
})
});
</script>
How to disable r2,r3,r4 when I choose date 11/15/2018
?
jquery ajax
add a comment |
I have 4 radiobutton r1,r2,r3,r4. And a date input "tanggal".
in my table i have data in row tanggal 11/15/2018, 11/15/2018, 11/15/2018 11/15/2018
row waktu09.00, 09.20, 09.40, and 10.00
with this query I just can disable one radio button r1
when I choose a date 11/15/2018
with value in my database
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val();
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php",
data: {tanggal: tanggalfromfield}
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}
});
})
});
</script>
when i try to use if else statement nothing change and it's not work.
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val(); // AMBIL isi dari fiel NPM masukkan variabel 'npmfromfield'
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php", // file PHP yang akan merespon ajax
data: {tanggal: tanggalfromfield} // data POST yang akan dikirim
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
}
});
})
});
</script>
How to disable r2,r3,r4 when I choose date 11/15/2018
?
jquery ajax
add a comment |
I have 4 radiobutton r1,r2,r3,r4. And a date input "tanggal".
in my table i have data in row tanggal 11/15/2018, 11/15/2018, 11/15/2018 11/15/2018
row waktu09.00, 09.20, 09.40, and 10.00
with this query I just can disable one radio button r1
when I choose a date 11/15/2018
with value in my database
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val();
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php",
data: {tanggal: tanggalfromfield}
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}
});
})
});
</script>
when i try to use if else statement nothing change and it's not work.
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val(); // AMBIL isi dari fiel NPM masukkan variabel 'npmfromfield'
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php", // file PHP yang akan merespon ajax
data: {tanggal: tanggalfromfield} // data POST yang akan dikirim
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
}
});
})
});
</script>
How to disable r2,r3,r4 when I choose date 11/15/2018
?
jquery ajax
I have 4 radiobutton r1,r2,r3,r4. And a date input "tanggal".
in my table i have data in row tanggal 11/15/2018, 11/15/2018, 11/15/2018 11/15/2018
row waktu09.00, 09.20, 09.40, and 10.00
with this query I just can disable one radio button r1
when I choose a date 11/15/2018
with value in my database
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val();
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php",
data: {tanggal: tanggalfromfield}
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}
});
})
});
</script>
when i try to use if else statement nothing change and it's not work.
<script type="text/javascript">
$(document).ready(function(){
$('#tanggal').change(function(){
var tanggalfromfield = $('#tanggal').val(); // AMBIL isi dari fiel NPM masukkan variabel 'npmfromfield'
$.ajax({ // Memulai ajax
method: "POST",
url: "ajaxtanggal.php", // file PHP yang akan merespon ajax
data: {tanggal: tanggalfromfield} // data POST yang akan dikirim
})
.done(function(hasilajax) {
$('#nama').val(hasilajax);
var tam=hasilajax;
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
}
});
})
});
</script>
How to disable r2,r3,r4 when I choose date 11/15/2018
?
jquery ajax
jquery ajax
edited Nov 16 '18 at 5:31
RussellB
8171531
8171531
asked Nov 16 '18 at 4:38
Gusti Yeni Roudhatul IlmiGusti Yeni Roudhatul Ilmi
111
111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to make standart debugging actions:
1) check tam=='09.00WIB - is this still works? According to code - must be.
2) use
$('#nama').val(hasilajax);
var tam=hasilajax;
console.log('tam:'); console.log(tam);
to see real value of tam. It can be surprisingly not what you expect.
3) add message in various statement to check if it is goes here:
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
console.log('r1 - worked');
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
console.log('r2 - worked');
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
console.log('r3 - worked');
} else {
console.log('nothing of this');
}
Only then you can understand where is error. Probably not in "if else if"
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331524%2fhow-to-use-if-else-statement-ajax%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to make standart debugging actions:
1) check tam=='09.00WIB - is this still works? According to code - must be.
2) use
$('#nama').val(hasilajax);
var tam=hasilajax;
console.log('tam:'); console.log(tam);
to see real value of tam. It can be surprisingly not what you expect.
3) add message in various statement to check if it is goes here:
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
console.log('r1 - worked');
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
console.log('r2 - worked');
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
console.log('r3 - worked');
} else {
console.log('nothing of this');
}
Only then you can understand where is error. Probably not in "if else if"
add a comment |
You need to make standart debugging actions:
1) check tam=='09.00WIB - is this still works? According to code - must be.
2) use
$('#nama').val(hasilajax);
var tam=hasilajax;
console.log('tam:'); console.log(tam);
to see real value of tam. It can be surprisingly not what you expect.
3) add message in various statement to check if it is goes here:
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
console.log('r1 - worked');
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
console.log('r2 - worked');
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
console.log('r3 - worked');
} else {
console.log('nothing of this');
}
Only then you can understand where is error. Probably not in "if else if"
add a comment |
You need to make standart debugging actions:
1) check tam=='09.00WIB - is this still works? According to code - must be.
2) use
$('#nama').val(hasilajax);
var tam=hasilajax;
console.log('tam:'); console.log(tam);
to see real value of tam. It can be surprisingly not what you expect.
3) add message in various statement to check if it is goes here:
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
console.log('r1 - worked');
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
console.log('r2 - worked');
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
console.log('r3 - worked');
} else {
console.log('nothing of this');
}
Only then you can understand where is error. Probably not in "if else if"
You need to make standart debugging actions:
1) check tam=='09.00WIB - is this still works? According to code - must be.
2) use
$('#nama').val(hasilajax);
var tam=hasilajax;
console.log('tam:'); console.log(tam);
to see real value of tam. It can be surprisingly not what you expect.
3) add message in various statement to check if it is goes here:
if(tam=='09.00WIB'){
document.getElementById("r1").disabled = true;
console.log('r1 - worked');
}else if(tam=='09.20WIB'){
document.getElementById("r2").disabled = true;
console.log('r2 - worked');
}else if(tam=='09.40WIB'){
document.getElementById("r3").disabled = true;
console.log('r3 - worked');
} else {
console.log('nothing of this');
}
Only then you can understand where is error. Probably not in "if else if"
answered Nov 16 '18 at 6:45
A. DenisA. Denis
409313
409313
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331524%2fhow-to-use-if-else-statement-ajax%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown