我正在尝试控制日志“this”的值,这是我动态创建的div。我不确定我到底做错了什么,因为我的变量返回正确的东西。
getGames().done(function(results){
$.each(results, function (i, gameData){
$.each(gameData, function(key, game){
var gamesHome = game.home_team_conference;
var gamesAway = game.away_team_conference;
if(gamesHome == "Big West" || gamesAway == "Big West"){
// console.log(this);
var gameId = game.id;
var homeTeam = game.home_team;
var awayTeam = game.away_team;
var pointTotal = game.total_points_bet;
var gameTime = game.game_time_hour;
var gameDate = game.game_time_date;
var gameId = game.id;
var network = game.broadcast_network;
var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
var hueTwo = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
$('.wrapper').append('\
<div class="main-wrapper col-lg-6 col-md-6 col-sm-12">\
<div class="game-cards">\
<div class="chart-container">\
<canvas id="'+ homeTeam +'" width="500" height="500"></canvas>\
</div>\
<div class="right-info">\
<h4>' + awayTeam + '<br>' + " @ " + '<br>' + homeTeam +'</h4>\
<h5 id="time-channel">'+ gameDate +' @ ' + gameTime + '<br>' + ' On ' + network +'</h5>\
<div class="total-points-live">\
<h5>Total Points Bet</h5>\
<h5 id="point-total">'+ pointTotal +'</h5>\
<p>'+ awayTeam +'</p>\
<input class="bet-input" data-team-type="'+ awayTeam +'" type="number" pattern="[0-9]*" name="betAmount" placeholder="Wager Amount">\
<p>'+ homeTeam +'</p>\
<input class="bet-input" data-team-type="'+ homeTeam +'" type="number" pattern="[0-9]*" name="betAmount" placeholder="Wager Amount">\
<p class="bet-button">Click To Place Bet</p>\
</div>\
</div>\
</div>\
');
$('.bet-button').click(function(){
console.log($(this).homeTeam)
})
所以点击.bet-button我想返回div特定的homeTeam,但我的控制台将其记录为“undefined”。我可以将它作为homeTeam进行控制。它会为我提供不止一个的值。所以我不确定发生了什么。任何帮助将不胜感激!