0

我正在尝试获取变量 GET 的值...这是我的代码:

$('.x').append("<li><a class='smsContact' href='#SMS2?telefone=testeValue></a>");
4

1 回答 1

1

我不确定您所说的“变量 GET”是什么意思?如果您指的是a元素的href属性,特别是另一端的 PHP GET 命令可用的部分......

使用 jQuery 它看起来像这样:

在这里工作 jsFiddle

$('.smsContact').click(function() {
    xx = $(this).attr('href'); 
    alert('href is:  ' + xx);
    justval = xx.split('=');
    yy = justval[1];
    alert('Just the value is:  ' + yy);
});
于 2013-08-28T17:26:51.223 回答