具体的には以下です。

var Sample = function(str){
    this.str = str;

    $('#btn').click(function(){
         alert(str);
    });
}

クリックイベントハンドラからsrtを出力します。