HTMLページに次のJavaScriptがあるとします
<html>
<script>
var simpleText = "hello_world";
var finalSplitText = simpleText.split("_");
var splitText = finalSplitText[0];
</script>
<body>
<a href = test.html>I need the value of "splitText" variable here</a>
</body>
</html>
スクリプト タグの外側にある変数 "splitText" の値を取得するにはどうすればよいですか。
ありがとう!