作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有链接
<a id="container" value="{$variable}" href="#">Click This</a>
我想通过 AJAX 调用用于 POST。
这是我的代码。
$('#container').click(function(event){
event.preventDefault();
$.post('/cart.php?mode=add&productid={$variablegoes here}&amount=1&redirect_from_cart=Y', function(response){
alert(response);
});
});
最佳答案
很简单,只需读取属性,使用 encodeURIComponent
进行编码,然后将值连接到字符串中。
$('#container').click(function(event){
event.preventDefault();
var variable = $(this).attr('value');
$.post('/cart.php?mode=add&productid=' + encodeURIComponent(variable) + '&amount=1&redirect_from_cart=Y', function(response){
alert(response);
});
});
a
标签通常没有 value
属性,所以我建议使用 data 属性来代替以保持 HTML 美观和有效。
<a id="container" data-value="{$variable}" href="#">Click This</a>
$('#container').click(function(event){
event.preventDefault();
var variable = $(this).attr('data-value');
$.post('/cart.php?mode=add&productid=' + encodeURIComponent(variable) + '&amount=1&redirect_from_cart=Y', function(response){
alert(response);
});
});
关于javascript - 使用属性作为变量从 <a href> 单击进行 AJAX 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41068239/
我是一名优秀的程序员,十分优秀!