Fix heading and cross-links (#24431)
parent
181a59767d
commit
73bc2ee1eb
|
@ -281,9 +281,9 @@ The following image shows the rendered `CallDotNetExample6` parent component aft
|
|||
|
||||
![Rendered 'CallDotNetExample6' component example](~/blazor/javascript-interoperability/call-dotnet-from-javascript/_static/component-example-6.png)
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
@ -685,9 +685,9 @@ The following image shows the rendered `CallDotNetExample6` parent component aft
|
|||
|
||||
![Rendered 'CallDotNetExample6' component example](~/blazor/javascript-interoperability/call-dotnet-from-javascript/_static/component-example-6.png)
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
@ -999,9 +999,9 @@ The following image shows the rendered `CallDotNetExample6` parent component aft
|
|||
|
||||
![Rendered 'CallDotNetExample6' component example](~/blazor/javascript-interoperability/call-dotnet-from-javascript/_static/component-example-6.png)
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JS interop overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
|
|
@ -146,9 +146,9 @@ IJSRuntime JS { get; set; }
|
|||
|
||||
[!INCLUDE[](~/blazor/includes/prerendering.md)]
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
@ -853,9 +853,9 @@ IJSRuntime JS { get; set; }
|
|||
|
||||
[!INCLUDE[](~/blazor/includes/prerendering.md)]
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
@ -1461,9 +1461,9 @@ IJSRuntime JS { get; set; }
|
|||
|
||||
[!INCLUDE[](~/blazor/includes/prerendering.md)]
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascipt):
|
||||
Load JavaScript (JS) code using any of approaches described by the [JavaScript (JS) interoperability (interop) overview article](xref:blazor/js-interop/index#location-of-javascript):
|
||||
|
||||
* [Load a script in `<head>` markup](xref:blazor/js-interop/index#load-a-script-in-head-markup) (*Not generally recommended*)
|
||||
* [Load a script in `<body>` markup](xref:blazor/js-interop/index#load-a-script-in-body-markup)
|
||||
|
|
|
@ -235,7 +235,7 @@ For more information, see <xref:blazor/js-interop/call-javascript-from-dotnet#ca
|
|||
|
||||
JS interop calls are asynchronous by default, regardless of whether the called code is synchronous or asynchronous. Calls are asynchronous by default to ensure that components are compatible across both Blazor hosting models, Blazor Server and Blazor WebAssembly. On Blazor Server, JS interop calls must be asynchronous because they're sent over a network connection. For apps that exclusively adopt the Blazor WebAssembly hosting model, synchronous JS interop calls are supported. For more information, see <xref:blazor/performance?pivots=webassembly#consider-the-use-of-synchronous-calls>.
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of the following approaches:
|
||||
|
||||
|
@ -425,7 +425,7 @@ For more information, see <xref:blazor/js-interop/call-javascript-from-dotnet#ca
|
|||
|
||||
JS interop calls are asynchronous by default, regardless of whether the called code is synchronous or asynchronous. Calls are asynchronous by default to ensure that components are compatible across both Blazor hosting models, Blazor Server and Blazor WebAssembly. On Blazor Server, JS interop calls must be asynchronous because they're sent over a network connection. For apps that exclusively adopt the Blazor WebAssembly hosting model, synchronous JS interop calls are supported. For more information, see <xref:blazor/performance?pivots=webassembly#consider-the-use-of-synchronous-calls>.
|
||||
|
||||
## Location of JavaScipt
|
||||
## Location of JavaScript
|
||||
|
||||
Load JavaScript (JS) code using any of the following approaches:
|
||||
|
||||
|
|
Loading…
Reference in New Issue