Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取变量 GET 的值...这是我的代码:
$('.x').append("<li><a class='smsContact' href='#SMS2?telefone=testeValue></a>");
我不确定您所说的“变量 GET”是什么意思?如果您指的是a元素的href属性,特别是另一端的 PHP GET 命令可用的部分......
a
href
使用 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); });