브라우저 최소화 후 입력란에 입력 할 수 없음

사용자 3802347

Vistual Studio 2012와 Bootstrap 3 (cosmo-bootstrap 테마)을 사용하여 페이지 스타일을 지정하고 있습니다. 브라우저가 최대화되면 페이지가 제대로 작동합니다. 그러나 페이지가 특정 크기로 복원되면 입력 텍스트 상자에 입력 할 수 없습니다. 다른 사람이이 문제가 있습니까? 이 문제를 해결하려면 어떻게해야합니까? 아래는 내 레이아웃 페이지 중 하나입니다.

<!DOCTYPE html>
<html>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<head>
    <title>@ViewBag.Title</title>
    <link href="../../Content/css/bootstrap.min.css" rel="stylesheet" />
    <link href="../../Content/cosmo-boostrap.min.css" rel="stylesheet" />
    <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
</head>
<body>
@* <fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>*@

<div id="status">
</div>

</div>
    <div id="page">
        <header class="container">
            <div id="menu" class="navbar navbar-default navbar-fixed-top">
                <div class="navbar-header">
                    <button class="btn btn-success navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                        <span class="glyphicon glyphicon-chevron-down"></span> 
                    </button>
                   <div id="logo" id="logo" class="col-md-6 col-md-offset-6 col-sm-7 col-sm-offset-5 col-xs-8 col-xs-offset-4">
                            <img src="../../Images/logo.png" alt="THE BOOK UP" class="image-responsive" /> @Html.ActionLink(SessionWrapper.Student.FirstName +" "+ SessionWrapper.Student.LastName ,"UserProfile","Student", null, new {id = SessionWrapper.Student.UserId})
                   </div>
                </div>
                <div class="navbar-collapse collapse">
                    <ul class="nav navbar-nav navbar-right">
                    <li id="ListBook" class= "nav">
                       @* @Html.ActionLink("List Books", "ListBook", "Student")*@
                        <label class="btn btn-primary" onclick="location.href='@Url.Action("ListBook", "Student")'">List Books</label>
                    </li>
                    <li id="FindBook" class="nav">
                       @* @Html.ActionLink("Find Books", "FindBook", "Student")*@
                        <label class="btn btn-primary" onclick="location.href='@Url.Action("FindBook", "Student")'">Find Books</label>
                    </li>
                    <li id= "index" class="nav">
                       @* @Html.ActionLink("Add Books", "AddBook", "Student")*@
                        <label class="btn btn-primary" onclick="location.href='@Url.Action("AddBook", "Student")'">Add Book</label>
                    </li>
                    <li id="addUser" class="nav">
                        <label class="btn btn-primary" onclick="location.href='@Url.Action("AddUser","Home")'">Add User</label>
                    </li>
                    <li id="Logoff" class="nav">
                       @* @Html.ActionLink("Log Off", "LogOff", "Account", new { onclick="logOut()" })*@
                        <label class="btn btn-primary" onclick="logOut(1)">Log out</label>
                    </li>
                </ul>
                </div>
            </div>
        </header>
        <section id="body" class="container">
            <section id="main" class="col-md-10 col-sm-10 col-xs-12">
                @RenderBody()
            </section>
            <section id="sidebar" class="col-md-2 col-sm-2">
                <table style="background-color: black;">
                    <tr>
                        <td style="width: 150px; height: 150px;">
                            <div id="AddCarousel" class="carousel slide" data-ride="carousel" data-interval="3000" data-wrap="true">
                                <!-- Wrapper for slides -->
                                <div class="carousel-inner">
                                    <div class="item active">
                                        <img src="../../Images/adds/Desert.jpg" id="pic1" alt="Desert" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Desert</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/koala.png" id="pic2" alt="Koala" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Koala</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/Jellyfish.jpg"  id="pic3" alt="Jelly Fish" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Jelly Fish</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/Tulips.jpg"  id="pic4" alt="Tulips" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Tulips</h3>
                                        </div>
                                    </div>
                                </div>
                             </div>
                        </td>
                    </tr>
                    <tr>
                        <td style="width: 150px; height: 150px;">
                             <div id="AddCarousel" class="carousel slide" data-ride="carousel" data-interval="3000" data-wrap="true">
                                <!-- Wrapper for slides -->
                                <div class="carousel-inner">
                                    <div class="item active">
                                        <img src="../../Images/adds/Desert.jpg" id="pic1" alt="Desert" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Desert</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/koala.png" id="pic2" alt="Koala" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Koala</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/Jellyfish.jpg"  id="pic3" alt="Jelly Fish" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Jelly Fish</h3>
                                        </div>
                                    </div>
                                    <div class="item">
                                        <img src="../../Images/adds/Tulips.jpg"  id="pic4" alt="Tulips" class="thumbnail image-responsive">
                                        <div class="carousel-caption">
                                            <h3>Tulips</h3>
                                        </div>
                                    </div>
                                </div>
                             </div>
                        </td>
                    </tr>
                </table>
            </section>
        </section>
        <hr />
        <footer class="container">
            <p>&copy; of K&M Systems Solution <a href="www.k&m.com">K&M</a>. </p>
        </footer>
    </div>

     <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
   @* <script data-main="scripts/js/mbtest" src="~/Scripts/js/require.js"></script>*@
    <script src="../../Scripts/js/bootstrap.min.js"></script>
    <script src="../../Scripts/js/site.js"></script>
</body>
</html>

   <script>
       $('#pic1').attr("src", '../../Images/adds/koala.png');
       //$('.carousel').carousel({
       //    interval: 3000
       //});
       @*  window.fbAsyncInit = function () {
             FB.init({
                 appId: '296813847191603',
                 xfbml: true,
                 version: 'v2.1'
             });

             FB.getLoginStatus(function (response) {
                 statusChangeCallback(response);
             });

         };

         (function (d, s, id) {
             var js, fjs = d.getElementsByTagName(s)[0];
             if (d.getElementById(id)) { return; }
             js = d.createElement(s); js.id = id;
             js.src = "//connect.facebook.net/en_US/sdk.js";
             fjs.parentNode.insertBefore(js, fjs);
         }(document, 'script', 'facebook-jssdk'));*@



         function logOut(e) {
            @* window.fbAsyncInit = function () {
                 alert('init');
                 FB.init({
                     appId: '296813847191603',
                     xfbml: true,
                     version: 'v2.1'
                 });
             };

             if (typeof FB.logout == 'function') {
                 if (FB.getAuthResponse()) {
                     FB.logout(function (response) { location.href = '@Url.Action("LogOff", "Account")'; });
                     return;
                 }
             } else {
                 location.href = '@Url.Action("LogOff", "Account")';
                 return;
             }*@

             if (e == 1) {
                 location.href = '@Url.Action("LogOff", "Account")';
             }
         }
</script>
사용자 3802347

문제는 내 사이드 ​​바가 기본 양식을 차지하고 있다는 것입니다. 내 CSS 파일에 아래에 표시된 줄을 추가했습니다. 문제가 해결되었습니다.

#sidebar
{
  overflow: hidden;  
}

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

브라우저 최소화 후 입력란에 입력 할 수 없음

분류에서Dev

입력 필드에 입력 한 후 편집 할 수 없음

분류에서Dev

Angular Forms : patchValue 후 필드에 입력 할 수 없음

분류에서Dev

브라우저에 수동으로 입력 할 때 React-router URL이 작동하지 않음

분류에서Dev

텍스트 상자에 문자열을 입력 할 수 없습니다. 브라우저를 엽니 다.

분류에서Dev

프로그래밍 방식 웹 브라우징을 사용할 때 inspect 요소를 사용하여 입력 필드에 액세스 할 수 없음

분류에서Dev

IE 브라우저에서 요소를 검사 할 수 없음-Selenium

분류에서Dev

Ubuntu 18로 업그레이드 한 후 폴란드어 문자를 입력 할 수 없음

분류에서Dev

설치 후 브라우저에서 Webmin에 액세스 할 수 없습니다.

분류에서Dev

브라우저에서 Docker Tomcat에 액세스 할 수 없음

분류에서Dev

움라우트 문제 (터미널에 입력 할 수 없음 + 파일을 열 수 없음)

분류에서Dev

ReactJs 및 스타일 구성 요소, 입력 필드에 아무것도 입력 할 수 없음

분류에서Dev

옵션을 선택한 후 jQuery를 사용하여 입력 요소를 비활성화 할 수 없습니다.

분류에서Dev

Safari 브라우저 HTML 입력 유형 최소 최대 유효성 검사가 작동하지 않음

분류에서Dev

헤드리스 Chrome 요소를 클릭 할 수 없음 (브라우저 모드에서 작동)

분류에서Dev

NVIDIA에서 CUDA 8.0rc를 설치 한 후 검은 색 화면이 나타나고 tty를 입력 할 수 없음

분류에서Dev

ReactJS에 onChange를 추가 한 후 입력 필드에 입력 할 수 없습니다.

분류에서Dev

chmod 명령을 입력 한 후 웹 폴더에 액세스 할 수 없음 (오류 403)

분류에서Dev

InAppBrowser 및 회 전자 로딩 페이지를로드 한 후 입력 필드에 입력 할 수 없습니다

분류에서Dev

UiPath가 Chrome 브라우저 팝업 대화 상자를 클릭 할 수 없음

분류에서Dev

Blue Prism-요소를 감시 할 수 없음-브라우저 Firefox

분류에서Dev

브라우저를 통해 WebDav를 탐색 할 수 있지만 드라이브에 매핑 할 수 없음

분류에서Dev

ls를 입력 한 후 Sqlite를 종료 할 수 없습니다.

분류에서Dev

브라우저에서 Angular-cli 1.1.1 출력을 디버깅 할 수 없습니다.

분류에서Dev

RedisInsight Docker 표시 : 브라우저에서 사이트에 연결할 수 없음

분류에서Dev

xkb를 변경 한 후 키보드에서 입력 할 수 없습니다.

분류에서Dev

Banshee 충돌, Xubuntu의 브라우저 패널에 DVD를 나열 할 수 없음

분류에서Dev

AWS EC2-브라우저가 서버에 연결할 수 없음

분류에서Dev

Java : ADF 제어 값을 브라우저에 표시 할 수 없음

Related 관련 기사

  1. 1

    브라우저 최소화 후 입력란에 입력 할 수 없음

  2. 2

    입력 필드에 입력 한 후 편집 할 수 없음

  3. 3

    Angular Forms : patchValue 후 필드에 입력 할 수 없음

  4. 4

    브라우저에 수동으로 입력 할 때 React-router URL이 작동하지 않음

  5. 5

    텍스트 상자에 문자열을 입력 할 수 없습니다. 브라우저를 엽니 다.

  6. 6

    프로그래밍 방식 웹 브라우징을 사용할 때 inspect 요소를 사용하여 입력 필드에 액세스 할 수 없음

  7. 7

    IE 브라우저에서 요소를 검사 할 수 없음-Selenium

  8. 8

    Ubuntu 18로 업그레이드 한 후 폴란드어 문자를 입력 할 수 없음

  9. 9

    설치 후 브라우저에서 Webmin에 액세스 할 수 없습니다.

  10. 10

    브라우저에서 Docker Tomcat에 액세스 할 수 없음

  11. 11

    움라우트 문제 (터미널에 입력 할 수 없음 + 파일을 열 수 없음)

  12. 12

    ReactJs 및 스타일 구성 요소, 입력 필드에 아무것도 입력 할 수 없음

  13. 13

    옵션을 선택한 후 jQuery를 사용하여 입력 요소를 비활성화 할 수 없습니다.

  14. 14

    Safari 브라우저 HTML 입력 유형 최소 최대 유효성 검사가 작동하지 않음

  15. 15

    헤드리스 Chrome 요소를 클릭 할 수 없음 (브라우저 모드에서 작동)

  16. 16

    NVIDIA에서 CUDA 8.0rc를 설치 한 후 검은 색 화면이 나타나고 tty를 입력 할 수 없음

  17. 17

    ReactJS에 onChange를 추가 한 후 입력 필드에 입력 할 수 없습니다.

  18. 18

    chmod 명령을 입력 한 후 웹 폴더에 액세스 할 수 없음 (오류 403)

  19. 19

    InAppBrowser 및 회 전자 로딩 페이지를로드 한 후 입력 필드에 입력 할 수 없습니다

  20. 20

    UiPath가 Chrome 브라우저 팝업 대화 상자를 클릭 할 수 없음

  21. 21

    Blue Prism-요소를 감시 할 수 없음-브라우저 Firefox

  22. 22

    브라우저를 통해 WebDav를 탐색 할 수 있지만 드라이브에 매핑 할 수 없음

  23. 23

    ls를 입력 한 후 Sqlite를 종료 할 수 없습니다.

  24. 24

    브라우저에서 Angular-cli 1.1.1 출력을 디버깅 할 수 없습니다.

  25. 25

    RedisInsight Docker 표시 : 브라우저에서 사이트에 연결할 수 없음

  26. 26

    xkb를 변경 한 후 키보드에서 입력 할 수 없습니다.

  27. 27

    Banshee 충돌, Xubuntu의 브라우저 패널에 DVD를 나열 할 수 없음

  28. 28

    AWS EC2-브라우저가 서버에 연결할 수 없음

  29. 29

    Java : ADF 제어 값을 브라우저에 표시 할 수 없음

뜨겁다태그

보관