HTMLHyperlinkElementUtils.search - Web API 接口参考 编辑
HTMLHyperlinkElementUtils.search
属性是一个搜索字符串,也叫做查询字符串, 它是一个 USVString
,包含 '?'
和随后的 URL 参数。
语法
string = object.search; object.search = string;
示例
// 让一个
// <a id="myAnchor" href="/wiki/en-US/docs/HTMLHyperlinkElementUtils.search?q=123" />
// 元素在文档里
let anchor = document.getElementById("myAnchor");
let result = anchor.search;
// 返回:'?q=123'
规范
Specification | Status | Comment |
---|---|---|
HTML Living Standard HTMLHyperlinkElementUtils.search | Living Standard | 初始定义 |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
基本支持 | (Yes) [1] | (Yes) | 22 (22) [3][4] | (Yes) [2] | (Yes) [2] | (Yes) [2] |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
基本支持 | (Yes) [1] | (Yes) [1] | (Yes) | 22.0 (22) [3][4] | (Yes) [2] | (Yes) [2] | (Yes) [2] |
[1] 自Chrome 52起,该属性移至URL
[2] 虽然没有被分在一个独立的抽象接口,但该方法可以在实现了它的那些接口上直接使用,如果支持该接口。
[3] 从Gecko 22 到 Gecko 44,该属性在 URLUtils
mixin 上。它已经被移到 HTMLHyperlinkElementUtils
mixin,或者直接在这个接口上。
[4] 在 Firefox 53之前, pathname
和search
HTMLHyperLinkElementUtils
属性返回的URL部分是错误的。例如,对一个值为 http://z.com/x?a=true&b=false
的URL,pathname
会返回"/x?a=true&b=false"
,search
会返回 "", 而不是各自返回 "/x
" 和"?a=true&b=false"
。这已经被修正了。
相关链接
- 它属于
HTMLHyperlinkElementUtils
mixin 。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论