需要从jquery更改url和params

时间:2017-04-07 06:44:30

标签: jquery html url routes jsrender

HTML:

<a class="col-lg-12" href="{{:~url(name, type)}}" data-toggle="tooltip">

$.views.helpers({
        url: function (name, type) {
            return encodeURI("@Url.Action("index", "home", new { id = ViewContext.RouteData.Values["id"]})");
        }

我需要从jquery刷新这个param id。而且我不想使用任何虚拟值并将其替换为jquery。因为id可能是任何东西所以我无法用虚拟值替换jquery。

我试过以下。

$("a").attr("href", '<%= Url.Action("index", "home", new { id= ' + $("a li.active").attr("data-value")}) %>');

但这不起作用。如何从jquery动态更改此参数值?

0 个答案:

没有答案