Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,假设您有一堆名称相似的主题标签,例如“#ola-ola-one”、“#ola-ola-two”、“#ola-ola-three”等。
如果我想定位以“#ola-ola-”开头的所有主题标签,正确的通配符语法结构是什么?
非工作示例:
if (window.location.hash === '#ola-ola-(*)') { // just do it }
谢谢。
您可以使用正则表达式:
if (/^#ola-ola-./.test(window.location.hash)) {
进一步阅读:
.test()