英文:
jQuery val() with removing URL path
问题
我有一个简单的脚本来为输入字段设置一个值。
jQuery(document).on('click','#getit', function() {
jQuery("#getitout").val(api.get_video_link());
});
api.get_video_link() 返回带有锚点的URL:
`domain.com/post_type/post_name/#anchor`
如何删除URL路径,仅将锚点设置为输入字段的值?
输入字段的值应该是 `#anchor`
英文:
I have a simple script to set a value for an input field.
jQuery(document).on('click','#getit', function() {
jQuery("#getitout").val(api.get_video_link());
});
The api.get_video_link() returns this URL with an anchor:
domain.com/post_type/post_name/#anchor
How can I remove the url path and set only the anchor as value for my input field?
The input field value should be #anchor
答案1
得分: 1
只返回翻译好的部分:
简单使用正则表达式:
jQuery(document).on('click','#getit', function() {
let url = api.get_video_link();
jQuery("#getitout").val(url.match(/.*?(\#.+$)/)[1]);
});
英文:
Simply use regex:
jQuery(document).on('click','#getit', function() {
let url = api.get_video_link();
jQuery("#getitout").val(url.match(/.*?(\#.+$)/)[1]);
});
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论