Jump to content
  • 0

Как из файла .js вызвать функцию прописанную в теле html-страницы


Newman01
 Share

Question

Добрый день.

Есть следующая страница:

<html>
<head>
<SCRIPT src="ghost.js" type="text/javascript"></SCRIPT>
</head>
<body >
...
<script type="text/javascript">
<!--
function ale()
{
php генерация скрипта
}
-->
</script>
</body>
</html>

Проблема заключается в том, что я не могу вызвать функцию ale() из файла ghost.js

Как это сделать, помогите пожалуйста.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Скрипт из файла ghost.js выполняется раньше чем определяется функция ale(). Самый простой вариант перенести функцию над этим скриптом:

<html>
<head>
<script type="text/javascript">
<!--
function ale()
{
php генерация скрипта
}
-->
</script>
<SCRIPT src="ghost.js" type="text/javascript"></SCRIPT>
</head>
<body >
...
</body>
</html>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy