在下面的小提琴中,可以將一個偵聽器附加到投票按鈕,以便在單擊投票時觸發一個偵聽器,在這種情況下只是一個警報?單擊按鈕時觸發一個事件
我已經嘗試將css附加到偵聽器,但不工作。 :
$('.pds-return-poll').on('click', function() {
alert('here');
});
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".pds-pd-link").hide();
$(".a2a_dd.pds-share").hide();
});
</script>
<script type="text/javascript" charset="utf-8" src="http://static.polldaddy.com/p/6343621.js"></script>
New Poll
我嘗試添加代碼以更新的小提琴:http://jsfiddle.net/Wx5mM/13 /但事件沒有解僱? – user701254
有可能在投票腳本中的某些東西阻止創建按鈕時的事件如果您將其添加到投票按鈕的父項,工作正常,但我意識到這不是你所需要的 – charlietfl