0
<!DOCTYPE html>
<html>
<head>
<script>
//if i put window.location= "index.php" here not inside js function it worked but I need it to be inside a function
function newLoad() {
window.location= "index.php"
}
</script>
</head>
<body>
<input type="button" value="press here" onclick="newLoad()">
</body>
</html>
どのように私はそれをjavascript関数内で動作させることができますか?window.locationがjs関数内で動作しない
_not working_ !!を定義します。 –
はindex.phpに直接指定していません –
コードが実行されるはずなので、何が違うのですか? – epascarello