Сообщение от dmitriy94
|
Должно, однако не работает.
|
Бивас, тест! (с)
tmp.html
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src='tmp.js'></script>
<script src='tmp1.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>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
</script>
</head>
<body>
<button>Test</button>
</body>
</html>
tmp.js
function test(){
alert('Ok');
};
tmp1.js
$(function(){
$('button').click(function(){
test();
});
});
Все прекрасно работает!