html 将数据参数传递给ajax调用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 将数据参数传递给ajax调用相关的知识,希望对你有一定的参考价值。



<script>
  
  $.ajax({
    url: "discount.php?e="+<?php echo intval($_POST["id"]);?>+"&c="+code,
      success: function(data){

        if(data.indexOf('%') === -1) {  // if % is not found on discount ticket
          console.log("non percentage discount") ;
          discount = parseInt(data);
          if (discount>0) 
          discount = 0-discount;
          $('#discount_amount').val(discount);
                
        }  
      }
	        
</script>





















以上是关于html 将数据参数传递给ajax调用的主要内容,如果未能解决你的问题,请参考以下文章

在 ajax 调用中使用 datatable url 属性将参数传递给服务器

如何将附加参数传递给 jQuery DataTable ajax 调用?

将参数传递给 jQuery 的 select2 ajax 调用

将多个参数传递给 jQuery ajax 调用

java spring boot将字符串数组作为json中的参数传递给ajax调用

如何将两个参数传递给由 ajax 函数调用的 python 函数?