diff --git a/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor b/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor
index ae4fc22ece8..dec03c7eca9 100644
--- a/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor
+++ b/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor
@@ -92,7 +92,8 @@
@((MarkupString)Localizer["IntersectionObserverThresholdDesc"].Value)
@_thresholdValueString
-
+
-
-
+
diff --git a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs
index 11691d48843..2302c3ec051 100644
--- a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs
+++ b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs
@@ -11,11 +11,11 @@ namespace BootstrapBlazor.Components;
public partial class IntersectionObserver
{
///
- /// 获得/设置 是否使用元素视口作为根元素 默认为 false 使用浏览器视口作为根元素
- /// The element that is used as the viewport for checking visibility of the target. Must be the ancestor of the target. Defaults to the browser viewport if value is false. Default value is false
+ /// 获得/设置 是否使用元素视口作为根元素 默认为 true 使用当前元素作为根元素
+ /// The element that is used as the viewport for checking visibility of the target. Must be the ancestor of the target. Defaults to the browser viewport if value is false. Default value is true
///
[Parameter]
- public bool UseElementViewport { get; set; }
+ public bool UseElementViewport { get; set; } = true;
///
/// Margin around the root. Can have values similar to the CSS margin property, e.g. "10px 20px 30px 40px" (top, right, bottom, left). The values can be percentages. This set of values serves to grow or shrink each side of the root element's bounding box before computing intersections. Defaults to all zeros.
diff --git a/src/BootstrapBlazor/Components/IntersectionObserver/LoadMore.razor b/src/BootstrapBlazor/Components/IntersectionObserver/LoadMore.razor
index 13a44835e20..c8ac258d29c 100644
--- a/src/BootstrapBlazor/Components/IntersectionObserver/LoadMore.razor
+++ b/src/BootstrapBlazor/Components/IntersectionObserver/LoadMore.razor
@@ -1,7 +1,8 @@
@namespace BootstrapBlazor.Components
@inherits BootstrapModuleComponentBase
-
+
@if (CanLoading)