我有3个具有不同结构的href,并且它们都具有相同的硬编码参数(在此示例中值= somevalue-abc). 如何更新链接并使用新值覆盖值? jQuery的 $(document).ready(function () { $('a').click(function () { var $ne
如何更新链接并使用新值覆盖值?
jQuery的
$(document).ready(function () { $('a').click(function () { var $newValue = 'newvalue'; //here a function that overwrites the parameter 'somevalue-abc' with $newValue }); });
HTML
<a class="demo" href="http://www.mydomain.com/page.aspx?demo&value=somevalue-abc">link 1</a> <a class="real" href="http://www.mydomain.com/?value=somevalue-abc#go=yes">link 2</a> <a class="outgoing" href="http://www.mydomain.com/page.aspx?value=somevalue-abc">link 3</a>尝试:
$(document).ready(function () { $('a').click(function () { var $newValue = 'newvalue'; $(this).attr('href',$(this).attr('href').replace('somevalue-abc', $newValue)); }); });