1

PHPファイルに2つのJavaScript関数を定義しました

<script type="javascript">
function inviaRichiesta(){
    //some data elaborations
    location.href = '../index.php'; //page redirect       
}

function caricaDati(){
    var ele = document.getElementById("int").options[document.getElementById("int").selectedIndex].text;
    document.getElementById("tip").value = <?php echo $_SESSION['caricato']['tipologia']; ?>
}
</script>

しかし、選択メニュー内の値を変更すると、どれも機能しないようです

  <select name="intervento" onchange="inviaRichiesta()" id="int">

必要なのは、選択メニューで選択が行われたときにブラウザをページにリダイレクトすることです。どんな手掛かり?

コンソール出力:

> [12:09:07.771] ReferenceError: inviaRichiesta is not defined @
> http://localhost/tirocinio/view/inserimento_dati_intervento.php:1
4

2 に答える 2

-1

デモ

変更ページで URL にリダイレクトされます

window.location.assign("http://www.w3schools.com");
于 2013-08-23T10:11:17.033 に答える