Сообщение от devenge
|
Мне надо именно этот момент.
|
<script>
function Draw() {
this.qwer = "asdasd";
}
Draw.prototype.todraw = function() {
alert(this.qwer);
console.log( this.qwer );
};
var draw=new Draw;
window.onload=function(){document.getElementById("obj").onmousedown = function(){draw.todraw();};}
</script>
<body>
<button id='obj'>1111</button>
так наверно