<a href="http://..../index.php/index/index/pay.html?it=" + $("#paymoney").text()>
上面是一句 错误的代码, 我想把 id="paymoney" 的 label 的值当成参数传出去,应该怎么写才对呢
1 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
<a id="a-link" href="http://..../index.php/index/index/pay.html?it=">
<script>
var href = $('#a-link').attr('href');
$('#a-link').attr('href',href + $("#paymoney").text());
</script>
- 1 回答
- 0 关注
- 594 浏览
添加回答
举报
0/150
提交
取消