如何在 jquery 中格式化该字符串,使其包含 title 变量的值?

发布于 2024-11-15 23:46:10 字数 423 浏览 0 评论 0原文

我需要找到一种格式化字符串的方法,以便我可以用标题替换“_TITLE_TO_REPLACE_”。我尝试使用单引号,以便可以在该位置输入标题,但我不知道如何转义FavoriteWallpaper 和Wallpaper 周围的引号,以便URL.Action 调用有效。

var title = $(this).parent().siblings(".imageLink").children().attr('title');

$(this).attr('href', function() {
        var url = '<%: Url.Action("FavoriteWallpaper", "Wallpaper", new { wallpaperId= "_TITLE_TO_REPLACE_"}) %>';
        return url;
});

I need to find a way to format the string such that I can replace "_TITLE_TO_REPLACE_" with the title. I have tried using single quotes so that the title can be entered in that spot, but I don't know how to escape the quotes around FavoriteWallpaper and Wallpaper, such that the URL.Action call is valid.

var title = $(this).parent().siblings(".imageLink").children().attr('title');

$(this).attr('href', function() {
        var url = '<%: Url.Action("FavoriteWallpaper", "Wallpaper", new { wallpaperId= "_TITLE_TO_REPLACE_"}) %>';
        return url;
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白色秋天 2024-11-22 23:46:10

我假设您需要在页面呈现 url.action 之后执行此操作。

返回
url.replace('_TITLE_TO_REPLACE_',标题);

Im assuming you need to do this after the page renders your url.action.

return
url.replace('_TITLE_TO_REPLACE_',title);

愛放△進行李 2024-11-22 23:46:10

试试这个:

var url = '<%: Url.Action("FavoriteWallpaper", "Wallpaper", new { wallpaperId= "' + title + '"}) %>';

Try this:

var url = '<%: Url.Action("FavoriteWallpaper", "Wallpaper", new { wallpaperId= "' + title + '"}) %>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文