{"id":3155,"date":"2024-11-10T08:20:38","date_gmt":"2024-11-10T00:20:38","guid":{"rendered":"https:\/\/fwq.ai\/blog\/3155\/"},"modified":"2024-11-10T08:20:38","modified_gmt":"2024-11-10T00:20:38","slug":"js%e5%a6%82%e4%bd%95%e9%a1%b5%e9%9d%a2%e8%b7%b3%e8%bd%ac","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/3155\/","title":{"rendered":"js\u5982\u4f55\u9875\u9762\u8df3\u8f6c"},"content":{"rendered":"<blockquote><p>\n  \u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u603b\u7ed3\uff1a\u76f4\u63a5\u8df3\u8f6c\uff1a\u4f7f\u7528 window.location.href \u76f4\u63a5\u8df3\u8f6c\u5230\u6307\u5b9a url\u3002\u76f8\u5bf9\u9875\u9762\u8df3\u8f6c\uff1a\u4f7f\u7528 window.location.assign() \u76f8\u5bf9\u5f53\u524d\u9875\u9762\u8df3\u8f6c\u3002\u66ff\u6362\u5f53\u524d\u9875\u9762\uff1a\u4f7f\u7528 window.location.replace() \u66ff\u6362\u5f53\u524d\u9875\u9762\u3002\u4f7f\u7528 javascript \u51fd\u6570\u5c01\u88c5\uff1a\u521b\u5efa\u81ea\u5b9a\u4e49\u51fd\u6570\uff0c\u6839\u636e\u4e0d\u540c\u60c5\u51b5\u6267\u884c\u4e0d\u540c\u7684\u9875\u9762\u8df3\u8f6c\u3002\u4f7f\u7528 html \u6807\u7b7e\uff1a\u4f7f\u7528 \u6216 \u6807\u7b7e\uff0c\u5e76\u901a\u8fc7 javascript \u624b\u52a8\u89e6\u53d1\u8df3\u8f6c\u3002\u4f7f\u7528\u8d85\u94fe\u63a5\uff1a\n<\/p><\/blockquote>\n<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/202411\/08\/2024110805332538990.jpg\" class=\"aligncenter\" title=\"js\u5982\u4f55\u9875\u9762\u8df3\u8f6c\u63d2\u56fe\" alt=\"js\u5982\u4f55\u9875\u9762\u8df3\u8f6c\u63d2\u56fe\" \/><\/p>\n<p><strong>\u5982\u4f55\u5728 JavaScript \u4e2d\u5b9e\u73b0\u9875\u9762\u8df3\u8f6c<\/strong><\/p>\n<p><strong>\u76f4\u63a5\u8df3\u8f6c<\/strong><\/p>\n<p>\u4f7f\u7528 window.location.href \u76f4\u63a5\u8df3\u8f6c\u5230\u6307\u5b9a URL\uff1a<\/p>\n<pre>window.location.href = 'https:\/\/example.com';<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u76f8\u5bf9\u9875\u9762\u8df3\u8f6c<\/strong><\/p>\n<p>\u4f7f\u7528 window.location.assign() \u76f8\u5bf9\u5f53\u524d\u9875\u9762\u8df3\u8f6c\uff1a<\/p>\n<pre>window.location.assign('about.html');<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u66ff\u6362\u5f53\u524d\u9875\u9762<\/strong><\/p>\n<p>\u4f7f\u7528 window.location.replace() \u66ff\u6362\u5f53\u524d\u9875\u9762\uff1a<\/p>\n<pre>window.location.replace('contact.html');<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u4f7f\u7528 Javascript \u51fd\u6570\u5c01\u88c5<\/strong><\/p>\n<p>\u521b\u5efa\u4e00\u4e2a\u81ea\u5b9a\u4e49 JavaScript \u51fd\u6570\u6765\u5b9e\u73b0\u66f4\u590d\u6742\u7684\u9875\u9762\u8df3\u8f6c\uff1a<\/p>\n<pre>function redirect(url) {\n  if (url !== undefined) {\n    window.location.href = url;\n  } else {\n    \/\/ \u6267\u884c\u5176\u4ed6\u52a8\u4f5c...\n  }\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u4f7f\u7528 HTML \u6807\u7b7e<\/strong><\/p>\n<p>\u4f7f\u7528 <\/p>\n<pre>&lt;a id=\"myLink\" href=\"https:\/\/example.com\"&gt;\u70b9\u51fb\u8df3\u8f6c&lt;\/a&gt;\n\n&lt;script&gt;\n  document.getElementById('myLink').addEventListener('click', () =&gt; {\n    window.location.href = 'https:\/\/example.com';\n  });\n&lt;\/script&gt;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u4f7f\u7528\u8d85\u94fe\u63a5<\/strong><\/p>\n<p>\u521b\u5efa\u8d85\u94fe\u63a5\u5e76\u4f7f\u7528 href \u5c5e\u6027\u6307\u5b9a\u76ee\u6807 URL\uff1a<\/p>\n<pre>&lt;a href=\"https:\/\/example.com\"&gt;\u70b9\u51fb\u8df3\u8f6c&lt;\/a&gt;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662fjs\u5982\u4f55\u9875\u9762\u8df3\u8f6c\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u603b\u7ed3\uff1a\u76f4\u63a5\u8df3\u8f6c\uff1a\u4f7f\u7528 window.location.href \u76f4\u63a5\u8df3\u8f6c\u5230\u6307\u5b9a url\u3002\u76f8\u5bf9\u9875\u9762\u8df3\u8f6c\uff1a\u4f7f\u7528 window.location.assign() \u76f8\u5bf9\u5f53\u524d\u9875\u9762\u8df3\u8f6c\u3002\u66ff\u6362\u5f53\u524d\u9875\u9762\uff1a\u4f7f\u7528 window.location.replace() \u66ff\u6362\u5f53\u524d\u9875\u9762\u3002\u4f7f\u7528 javascript \u51fd\u6570\u5c01\u88c5\uff1a\u521b\u5efa\u81ea\u5b9a\u4e49\u51fd\u6570\uff0c\u6839\u636e\u4e0d\u540c\u60c5\u51b5\u6267\u884c\u4e0d\u540c\u7684\u9875\u9762\u8df3\u8f6c\u3002\u4f7f\u7528 html \u6807\u7b7e\uff1a\u4f7f\u7528 \u6216 \u6807\u7b7e\uff0c\u5e76\u901a\u8fc7 javascript \u624b\u52a8\u89e6\u53d1\u8df3\u8f6c\u3002\u4f7f\u7528\u8d85\u94fe\u63a5\uff1a \u5982\u4f55\u5728 JavaScript \u4e2d\u5b9e\u73b0\u9875\u9762\u8df3\u8f6c \u76f4\u63a5\u8df3\u8f6c \u4f7f\u7528 window.location.href \u76f4\u63a5\u8df3\u8f6c\u5230\u6307\u5b9a URL\uff1a window.location.href = &#8216;https:\/\/example.com&#8217;; \u767b\u5f55\u540e\u590d\u5236 \u76f8\u5bf9\u9875\u9762\u8df3\u8f6c \u4f7f\u7528 window.location.assign() \u76f8\u5bf9\u5f53\u524d\u9875\u9762\u8df3\u8f6c\uff1a window.location.assign(&#8216;about.html&#8217;); \u767b\u5f55\u540e\u590d\u5236 \u66ff\u6362\u5f53\u524d\u9875\u9762 \u4f7f\u7528 window.location.replace() \u66ff\u6362\u5f53\u524d\u9875\u9762\uff1a window.location.replace(&#8216;contact.html&#8217;); \u767b\u5f55\u540e\u590d\u5236 \u4f7f\u7528 Javascript \u51fd\u6570\u5c01\u88c5 \u521b\u5efa\u4e00\u4e2a\u81ea\u5b9a\u4e49 JavaScript \u51fd\u6570\u6765\u5b9e\u73b0\u66f4\u590d\u6742\u7684\u9875\u9762\u8df3\u8f6c\uff1a function redirect(url) { if (url !== undefined) { window.location.href [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-3155","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/3155","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=3155"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/3155\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=3155"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=3155"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=3155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}