Сообщение от polinin
|
примере, предполагается, что при нажатии на кнопку "ALERT" должно появиться сообщение "OK!", однако, ничего не получается
|
Это нужно делать не формированием строки.
Как вариант
<!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'>
window.onload=function(){
var TEST = function(){
this.elem = function() {
var o=document.createElement('button');
o.innerHTML='Alert';
o.onclick=this.out;
document.body.appendChild(o);
};
this.out = function() { alert("OK!"); };
};
var t = new TEST();
t.elem();
};
</script>
</head>
<body>
</body>
</html>