如何在 jquery 中格式化该字符串,使其包含 title 变量的值?
我需要找到一种格式化字符串的方法,以便我可以用标题替换“_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您需要在页面呈现 url.action 之后执行此操作。
Im assuming you need to do this after the page renders your url.action.
试试这个:
Try this: