{"id":3281,"date":"2024-11-10T11:16:51","date_gmt":"2024-11-10T03:16:51","guid":{"rendered":"https:\/\/fwq.ai\/blog\/3281\/"},"modified":"2024-11-10T11:16:51","modified_gmt":"2024-11-10T03:16:51","slug":"%e4%b8%ba%e4%bb%80%e4%b9%88%e8%bf%99%e6%ae%b5-js-%e4%bb%a3%e7%a0%81%e4%bc%9a%e6%8a%a5%e9%94%99%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/3281\/","title":{"rendered":"\u4e3a\u4ec0\u4e48\u8fd9\u6bb5 JS \u4ee3\u7801\u4f1a\u62a5\u9519\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173102761730449.jpg\" class=\"aligncenter\" title=\"\u4e3a\u4ec0\u4e48\u8fd9\u6bb5 JS \u4ee3\u7801\u4f1a\u62a5\u9519\uff1f\u63d2\u56fe\" alt=\"\u4e3a\u4ec0\u4e48\u8fd9\u6bb5 JS \u4ee3\u7801\u4f1a\u62a5\u9519\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>js \u8001\u5927\u4e0d\u89e3\u7684\u7591\u60d1<\/strong><\/p>\n<p>\u5728\u6d4f\u89c8\u4ee3\u7801\u65f6\uff0c\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684 js \u5927\u4f6c\u9047\u5230\u4e86\u4e00\u5934\u96fe\u6c34\u7684\u95ee\u9898\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n<pre>&lt;head&gt;\n  &lt;script src=\"http:\/\/code.jquery.com\/jquery-latest.js\"&gt;&lt;\/script&gt;\n  &lt;script&gt;\n    $(function () {\n      var temp = new a();\n      temp.b();\n    });\n\n    var a = function () {\n      var b = function () {\n        alert(1);\n      };\n    };\n  &lt;\/script&gt;\n&lt;\/head&gt;\n\n&lt;body&gt;\n  ...\n&lt;\/body&gt;\n<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u7136\u800c\uff0c\u8fd9\u6bb5\u4ee3\u7801\u8fd0\u884c\u65f6\u5374\u62a5\u9519\uff0c\u8ba9\u8fd9\u4f4d\u5927\u4f6c\u767e\u601d\u4e0d\u5f97\u5176\u89e3\u3002<\/p>\n<p><strong>\u6df1\u5165\u63a2\u7a76<\/strong><\/p>\n<p>\u7ecf\u67e5\u8bc1\uff0c\u95ee\u9898\u7684\u6839\u6e90\u5728\u4e8e\u4ee3\u7801\u5bf9 js \u7c7b\u548c\u65b9\u6cd5\u7684\u5b9a\u4e49\u548c\u8c03\u7528\u65b9\u5f0f\u5b58\u5728\u95ee\u9898\u3002<\/p>\n<p>\u672c\u6765\uff0c\u6b63\u786e\u7684\u5199\u6cd5\u5e94\u8be5\u662f\uff1a<\/p>\n<pre>var a = function () {\n  this.b = function () {\n    alert(1);\n  };\n};\n\nvar temp = new a();\ntemp.b();<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u5728\u8fd9\u4e2a\u793a\u4f8b\u4e2d\uff1a<\/p>\n<ul>\n<li>function a() \u521b\u5efa\u4e86\u4e00\u4e2a\u533f\u540d\u7c7b\u3002<\/li>\n<li>this.b \u5c06\u51fd\u6570 b \u5b9a\u4e49\u4e3a\u7c7b a \u7684\u65b9\u6cd5\u3002<\/li>\n<li>var temp = new a() \u5b9e\u4f8b\u5316\u4e86\u7c7b a\uff0c\u672c\u8d28\u4e0a\u521b\u5efa\u4e86\u4e00\u4e2a a \u5bf9\u8c61\u3002<\/li>\n<li>temp.b() \u8c03\u7528\u4e86\u5b9e\u4f8b temp \u4e0a\u7684 b \u65b9\u6cd5\uff0c\u4ece\u800c\u663e\u793a\u4e86\u8b66\u62a5\u3002<\/li>\n<\/ul>\n<p><strong>\u8bef\u89e3\u6240\u5728<\/strong><\/p>\n<p>\u5728\u95ee\u9898\u4ee3\u7801\u4e2d\uff0c\u51fd\u6570 b \u88ab\u5b9a\u4e49\u5728\u547d\u540d\u51fd\u6570 a \u7684\u5185\u90e8\uff0c\u800c\u4e0d\u662f\u88ab\u5206\u914d\u7ed9 this.b\u3002\u8fd9\u610f\u5473\u7740 b \u672c\u8d28\u4e0a\u662f\u4e00\u4e2a\u5185\u90e8\u51fd\u6570\uff0c\u800c\u4e0d\u662f\u7c7b a \u7684\u4e00\u90e8\u5206\uff0c\u8fd9\u4e5f\u5bfc\u81f4\u4e86\u8fd0\u884c\u65f6\u7684\u9519\u8bef\u3002<\/p>\n<p>\u56e0\u6b64\uff0c\u5728 js \u4e2d\uff0c\u6b63\u786e\u7684\u7c7b\u548c\u65b9\u6cd5\u5b9a\u4e49\u65b9\u5f0f\u81f3\u5173\u91cd\u8981\u3002\u7c7b\u65b9\u6cd5\u9700\u8981\u901a\u8fc7 this \u6765\u6307\u6d3e\uff0c\u4ee5\u786e\u4fdd\u5176\u80fd\u591f\u88ab\u5b9e\u4f8b\u5bf9\u8c61\u6240\u8c03\u7528\u3002<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u4e3a\u4ec0\u4e48\u8fd9\u6bb5 JS \u4ee3\u7801\u4f1a\u62a5\u9519\uff1f\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>js \u8001\u5927\u4e0d\u89e3\u7684\u7591\u60d1 \u5728\u6d4f\u89c8\u4ee3\u7801\u65f6\uff0c\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684 js \u5927\u4f6c\u9047\u5230\u4e86\u4e00\u5934\u96fe\u6c34\u7684\u95ee\u9898\uff0c\u4ee3\u7801\u5982\u4e0b\uff1a &lt;head&gt; &lt;script src=&#8221;http:\/\/code.jquery.com\/jquery-latest.js&#8221;&gt;&lt;\/script&gt; &lt;script&gt; $(function () { var temp = new a(); temp.b(); }); var a = function () { var b = function () { alert(1); }; }; &lt;\/script&gt; &lt;\/head&gt; &lt;body&gt; &#8230; &lt;\/body&gt; \u767b\u5f55\u540e\u590d\u5236 \u7136\u800c\uff0c\u8fd9\u6bb5\u4ee3\u7801\u8fd0\u884c\u65f6\u5374\u62a5\u9519\uff0c\u8ba9\u8fd9\u4f4d\u5927\u4f6c\u767e\u601d\u4e0d\u5f97\u5176\u89e3\u3002 \u6df1\u5165\u63a2\u7a76 \u7ecf\u67e5\u8bc1\uff0c\u95ee\u9898\u7684\u6839\u6e90\u5728\u4e8e\u4ee3\u7801\u5bf9 js \u7c7b\u548c\u65b9\u6cd5\u7684\u5b9a\u4e49\u548c\u8c03\u7528\u65b9\u5f0f\u5b58\u5728\u95ee\u9898\u3002 \u672c\u6765\uff0c\u6b63\u786e\u7684\u5199\u6cd5\u5e94\u8be5\u662f\uff1a var a = function () { this.b = function [&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-3281","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/3281","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=3281"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/3281\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=3281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=3281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=3281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}