找到 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它设置/返回 <map> 元素的 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; } 输出这将产生以下输出:单击“获取路径名”按钮之前:单击“获取路径名”按钮之后:
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; } 输出这将产生以下输出:单击“获取来源”按钮之前:单击“获取来源”按钮之后:
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”按钮之后: