window.location が別のページに移動するのに 3 ~ 5 秒かかるのはなぜですか? 確認後すぐにページを切り替えたい。
<script>
var a = confirm('Do you want to insert the device specifications now ؟');
if(a)
{
var name = '<?= $items_name ?>';
window.location = 'mobiles.php?name='+name;
}else
{
return false;
}
</script>
私には location.assign の方が速いようです
<script>
var a = confirm('Do you want to insert the device specifications now?');
if(a) {
var name = '<?= $items_name ?>';
window.location.assign('mobiles.php?name='+name);
}
else {
return false;
}
</script>