本文介绍了我如何使用Url.Action当参数传递给一个网址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下的code:

function reload() {
    var referenceID = $('#ReferenceID').val();
    $('#detailData').load(Url.Action("DetailData", new { pk = referenceID }));
} 

它指向的=刚过PK语法错误。

It points to a syntax error on the "=" just after pk.

我怎样才能加载URL的内容,并通过referenceID作为参数?

How can I load the contents of a URL and pass referenceID as a parameter?

推荐答案

您必须使用 @ 迹象:

function reload() {
    var referenceID = $('#ReferenceID').val();
    $('#detailData').load('@Url.Action("DetailData", new { pk = referenceID })');
}  

这篇关于我如何使用Url.Action当参数传递给一个网址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 06:59