Сообщение от yii2
|
В конце файла подключается js файл, в котором эта функция определена.
Но вылетает ошибка о том, что она не определена
|
Не верю... (c)
У меня все работает...
tmp.html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<!--
<script src='https://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
</script>
</head>
<body>
<div onclick='anySome();'>Test</div>
<script src='tmp.js'></script>
</body>
</html>
tmp.js
function anySome(){
alert('Ok');
};
Все работает!