gpt4 book ai didi

javascript - div 内容中的文本显示不正确

转载 作者:太空宇宙 更新时间:2023-11-03 21:48:11 25 4
gpt4 key购买 nike

这是我的 html 代码,其中的内容没有出现在我的 div 中。Tetxarea,可以看到复选框,但是看不到我写的任何文本。

我还编写了 css,它应该使 div 位于屏幕中间,而 div 也不会位于屏幕中央。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Creating Popup Div | istockphp.com</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script>
<script type="text/javascript" src="script.js"></script>

<style type="text/css">
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
top:calc(50% - 50px/2);
left:calc(50% - 50px/2);
}
</style>
</head>
<body>
<a href="#" class="topopup">Click Here Trigger</a>


<div id="toPopup" class="center" style="background-color: #EDEFF1; height:300px;width:500px; -moz-border-radius-bottomright: 15px; border-bottom-right-radius: 15px; -moz-border-radius-bottomleft: 15px; moz-border-radius-topleft: 15px;moz-border-radius-topright: 15px; border-bottom-left-radius: 15px; ">

<div class="close"></div>
<span class="ecs_tooltip">Press Esc to close <span class="arrow"></span></span>
<div id="popup_content"> <!--your content start-->
<p><b>Share post </b></p>
<textarea style="height:65px;width:400px;">
</textarea> <br>
<input type="checkbox"> - Facebook <hr> </input>
<input type="checkbox"> - Twitter <hr>
<input type="checkbox"> - Linked in <hr>
</br></br>
</div> <!--your content end-->
</div>
</art>
</body>
</html>

JSFiddle 链接:

http://jsfiddle.net/UD3U7/

在 jsfiddle 上它显示文本。实际上 div 应该弹出而不是直接出现。在jsfiddle上可以看到。

但是在我的本地主机上看不到 div 中的文本。

最佳答案

检查这个。对于textarea,开始和结束标签之间的内容(甚至是空格)将被视为内容。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Creating Popup Div | istockphp.com</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script>
<script type="text/javascript" src="script.js"></script>

<style type="text/css">
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
margin: auto;
bottom: 0;
left: 0;
top: 0;
right: 0;
}
</style>
</head>
<body>
<a href="#" class="topopup">Click Here Trigger</a>


<div id="toPopup" class="center" style="background-color: #EDEFF1; height:300px;width:500px; -moz-border-radius-bottomright: 15px; border-bottom-right-radius: 15px; -moz-border-radius-bottomleft: 15px; moz-border-radius-topleft: 15px;moz-border-radius-topright: 15px; border-bottom-left-radius: 15px; ">

<div class="close"></div>
<span class="ecs_tooltip">Press Esc to close <span class="arrow"></span></span>
<div id="popup_content"> <!--your content start-->
<p><b>Share post </b></p>
<textarea style="height:65px;width:400px;"></textarea> <br>
<input type="checkbox"> - Facebook <hr>
<input type="checkbox"> - Twitter <hr>
<input type="checkbox"> - Linked in <hr>
</br></br>
</div> <!--your content end-->
</div>
</body>
</html>

关于javascript - div 内容中的文本显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19264942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com