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.
我想检查一个 .aspx 后缀,如果它不存在(它是一个 Umbraco 应用程序,所以可能没有它)如果它不存在,我想将它添加到我从中获取的路径中
假设这将是 php 中 strpos 的 jquery 等价物。
这应该工作
if (!string.match(/\.aspx$/)) { string+='.aspx'; }