我正在尝试获取变量GET的值...这是我的代码:
$('.x').append("<li><a class='smsContact' href='#SMS2?telefone=testeValue></a>");
答案 0 :(得分:1)
我不确定“变量GET”是什么意思?如果您指的是a
元素的href
属性,特别是另一端的PHP GET命令可用的部分......
使用jQuery看起来像这样:
$('.smsContact').click(function() {
xx = $(this).attr('href');
alert('href is: ' + xx);
justval = xx.split('=');
yy = justval[1];
alert('Just the value is: ' + yy);
});