在链接激发前单击时更改按钮属性



我的网站使用的是Dwolla平台。我想在单击时将按钮的数据量属性更改为另一个文本字段中的值。当Dwolla网站加载时,它会提示我支付原始的默认金额,所以我认为我的属性修改不会发生。

<script type='text/javascript'>
$('.dwolla_button').click(function(){
alert($('#id_support_amount').val());
$('.dwolla_button').attr('data-amount', $('#id_support_amount').val());
});
</script>

我使用的是Dwolla的压缩javascript,当点击按钮时会触发请求,所以我可能最终不得不询问他们/在其中挖掘。

在链接激发之前,我通常如何更改属性?

要在实际单击之前执行某些操作,应该使用mousedown处理程序。

试试这样的东西:

$(document).on("mousedown",".dwolla_button", function(){ $(this).attr('data-amount', $('#id_support_amount').val());
});

或者看看我的工作例子http://jsfiddle.net/ZMb3E/1/

相关内容

  • 没有找到相关文章

最新更新