我要做的是使用jquery,ajax和google currency转换页面上的所有价格。
我发现了这个,它工作正常。
$('#submit').click(function(){
//Get the values
var amount = $('#amount').val();
var from = $('#from').val();
var to = $('#to').val();
var params = "amount=" + amount + "&from=" + from + "&to=" + to ;
$.ajax({
type: "POST",
url: "currency-converter.php",
data: params ,
success: function(data){
$('#converted_value').html(amount + from +" is equal to : " +data);
}
});
}) ;
如何将此应用于页面上的div类?让我说我有一个价格欧洲级;
<div class="product">
<div class="priceEuro"><?php the_field('price1'); ?></div>
</div>
<div class="product">
<div class="priceEuro"><?php the_field('price2'); ?></div>
</div>
<div class="product">
<div class="priceEuro"><?php the_field('price3'); ?></div>
</div>
现在我想转换所有不同的价格并将结果添加到这样的产品
$('.priceEuro').each(function () {
var amount = $(this).val();
var params = "amount=" + amount + "&from=EUR" + "&to=USD" ;
$.ajax({
type: "POST",
url: "currency-converter.php",
data: params ,
success: function(data){
$(this).append("<div class="priceUsd">'+ data +'</div>");
}
});
我知道这样做不对,所以解决方案是什么?感谢。
感谢@UnTechie现在我得到了结果,
$(document).ready(function() {
$.each($('.priceEuro'), function () {
var amount = $(this).text();
var dataString = "amount=" + amount + "&from=EUR" + "&to=USD";
$.ajax({
type: "POST",
url: "chalo/themes/chalo/ajax_converter.php",
data: dataString,
success: function(data){
console.log(data);
$(this).append('<div class="priceUsd">'+ data +'</div>');
}
});
});
});
但我无法在每个div之后附加这些结果,这是错误的吗?
$(this).append('<div class="priceUsd">'+ data +'</div>');
this
不会自动引用ajax回调中的正确对象。
现在它正在这样工作,
$(document).ready(function() {
$.each($('.priceEuro'), function () {
var $this = $(this);
var amount = $(this).text();
var dataString = "amount=" + amount + "&from=EUR" + "&to=USD";
$.ajax({
type: "POST",
url: "chalo/themes/chalo/ajax_converter.php",
data: dataString,
success: function(data){
console.log(data);
$this.append('<div class="priceUsd">'+ data +'</div>');
}
});
});
});
答案 0 :(得分:1)
您需要使用jquery.each(http://api.jquery.com/jQuery.each/)
这是你的代码看起来的样子..
$.each($('.priceEuro'), function () {
//Your code goes here ... Use $(this) to access each element
});