找到 2189 篇文章 关于 HTML
128 次浏览
HTML 中的 HTML DOM Mark 对象表示 <mark> 元素。语法以下是语法 - 创建一个 <mark> 元素 var markObject = document.createElement(“MARK”) 示例让我们来看一个 HTML DOM Mark 元素的示例 - 在线演示 HTML DOM Mark form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } HTML-DOM-Mark 完整姓名: var divDisplay ... 阅读更多
133 次浏览
HTML 中的 HTML DOM Map 对象表示 <map> 元素。语法以下是语法 - 创建一个 <map> 元素 var mapObject = document.createElement(“MAP”) 属性这里,“mapObject”可以具有以下集合和属性 - 集合/属性描述 areas 它返回所有 <area> 元素的集合 images 它返回所有 <img> 和 <area> 元素的集合 name 它设置/返回元素的 name 属性的值 示例让我们来看一个 Map areas 集合的示例 - 在线演示 Map areas 集合 form { width:70%; margin: 0 auto; text-align: center; } * { padding: ... 阅读更多
96 次浏览
Location search 属性返回/设置与 URL 查询参数相对应的字符串。语法以下是语法 - 返回 search 属性的值 location.search 设置 protocol 属性的值 location.search = searchString 示例让我们来看一个 Location search 属性的示例 - 在线演示 Location protocol form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } Location-protocol 当前 URL: ... 阅读更多
167 次浏览
HTML DOM Location replace() 方法用于渲染新文档以替换当前文档。它还从文档历史记录中删除当前文档 URL,从而禁用使用“后退”按钮导航到旧文档。语法以下是语法 - location.replace(URLString) 示例让我们来看一个 Location replace() 属性的示例 - 在线演示 Location replace() form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } ... 阅读更多
222 次浏览
HTML DOM Location reload() 方法用于重新渲染当前文档。它提供与浏览器中重新加载按钮相同的功能。语法以下是语法 - location.reload(forceGetParameter) 参数这里,“forceGetParameter”可以是以下 - forceGetParameter 详情 true 它定义当前文档是从服务器重新加载的。 false 它定义当前文档是从浏览器缓存重新加载的。 示例让我们来看一个 Location reload() 属性的示例 - 在线演示 Location reload() form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; ... 阅读更多
67 次浏览
Location protocol 属性返回/设置与 URL 使用的协议相对应的字符串。协议可以设置为“file:”、“http:”、“https:”等。语法以下是语法 - 返回 protocol 属性的值 location.protocol 设置 protocol 属性的值 location.protocol = protocolString 示例让我们来看一个 Location protocol 属性的示例 - 在线演示 Location protocol form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } ... 阅读更多
60 次浏览
Location port 属性返回/设置 URL 的端口号(如果指定)。如果没有显式指定,则可能不会显示端口号。语法以下是语法 - 返回 port 属性的值 location.port 设置 port 属性的值 location.port = portNumber 示例让我们来看一个 Location port 属性的示例 - 在线演示 Location port form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } ... 阅读更多
82 次浏览
Location pathname 属性返回/设置与 URL 路径名相对应的字符串。语法以下是语法 - 返回 pathname 属性的值 location.pathname 设置 href 属性的值 location.pathname = pathOfHost 示例让我们来看一个 Location pathname 属性的示例 - 在线演示 Location pathname form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } Location-pathname 当前 URL: var divDisplay = document.getElementById("divDisplay"); var urlSelect = document.getElementById("urlSelect"); function getpathname(){ divDisplay.textContent = 'URL pathname: '+location.pathname; } 输出这将产生以下输出 - 单击“获取 pathname”按钮之前 - 单击“获取 pathname”按钮之后 -
84 次浏览
Location origin 属性返回与 URL 的协议、主机名、主机端口号(如果指定)相对应的字符串。语法以下是语法 - 返回 origin 属性的值 location.origin 示例让我们来看一个 Location origin 属性的示例 - 在线演示 Location origin form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } Location-origin 当前 URL: var divDisplay = document.getElementById("divDisplay"); var urlSelect = document.getElementById("urlSelect"); function getorigin(){ divDisplay.textContent = 'URL Origin: '+location.origin; } 输出这将产生以下输出 - 单击“获取 origin”按钮之前 - 单击“获取 origin”按钮之后 -
111 次浏览
HTML DOM Location href 属性返回/设置与 URL 路径相对应的字符串。语法以下是语法 - 返回 href 属性的值 location.href 设置 href 属性的值 location.href = href 示例让我们来看一个 Location href 属性的示例 - 在线演示 Location href form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } Location-href 当前 URL: var divDisplay = document.getElementById("divDisplay"); var urlSelect = document.getElementById("urlSelect"); function gethref(){ divDisplay.textContent = 'URL Path: '+location.href; } 输出这将产生以下输出 - 单击“获取 href”按钮之前 - 单击“获取 href”按钮之后 -