1

我下面的链接可以正常工作,但我只想使用 Url.Content 请告知,谢谢

 $('#btnAddConsumer').click(function () {
        window.open('/ProductDetails/AddNewProduct/', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
4

2 回答 2

0

试试下面的代码

$('#btnAddConsumer').click(function () {
        window.open('@Url.Content("~/ProductDetails/AddNewProduct/")', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
于 2013-06-06T03:15:39.273 回答
0

我认为您需要 UrlHelper 的 Action 方法:

'#btnAddConsumer').click(function () {
        window.open('@Url.Action("AddNewProduct", "ProductDetails")', 'AddProduct', 'height=' + (window.screen.height - 470) + ',width=820,left=' + (window.screen.width - 5) + ',top=10,status=no,toolbar=no,resizable=yes,scrollbars=yes');
    });
于 2013-06-06T03:17:23.797 回答