我正在尝试创建一个网页,点击按钮我可以添加div
标签。我想要做的是,我将在一个div
内创建两个div
标签,以便所有演示文稿都是统一的,类似于有两列和多行的表格,第一列包含只有标签和第二列才会包含textbox
。
这是JS文件:
var counter = 0;
function create_div(type){
var dynDiv = document.createElement("div");
dynDiv.id = "divid_"+counter;
dynDiv.class="main";
document.body.appendChild(dynDiv);
question();
if(type == 'ADDTEXTBOX'){
ADDTEXTBOX();
}
counter=counter+1;
}
function question(){
var question_div = document.createElement("div");
question_div.class="question";
question_div.id = "question_div_"+counter;
var Question = prompt("Enter The Question here:", "");
var node=document.createTextNode(Question);
question_div.appendChild(node);
var element=document.getElementById("divid_"+counter);
element.appendChild(question_div);
}
function ADDTEXTBOX(){
var answer_div = document.createElement("div");
answer_div.class="answer";
answer_div.id = "answer_div_"+counter;
var answer_tag = document.createElement("input");
answer_tag.id = "answer_tag_"+counter;
answer_tag.setAttribute("type", "text");
answer_tag.setAttribute("name", "textbox");
answer_div.appendChild(answer_tag);
var element=document.getElementById("divid_"+counter);
element.appendChild(answer_div);
}
这是css文件:
.question
{
width: 40%;
height: auto;
float: left;
display: inline-block;
text-align: justify;
word-wrap:break-word;
}
.answer
{
padding-left:10%;
width: 40%;
height: auto;
float: left;
overflow: auto;
word-wrap:break-word;
}
.main
{
width: auto;
background-color:gray;
height: auto;
overflow: auto;
word-wrap:break-word;
}
我的问题是代码工作正常,但两个分区都不是直线。在屏幕上第一个div打印后,第二个分区出现在另一行。如何使div's
同时出现在同一行?
答案 0 :(得分:1)
它的不同之处在于你的JS代码,尝试设置你的类如下:
//question_div.class="question";
question_div.setAttribute("class", "question") ;
和
//answer_div.class="answer";
answer_div.setAttribute("class", "answer");
还有:
//dynDiv.class="main";
dynDiv.setAttribute("class", "main");
你的div没有正确设置class属性。如果您使用Firefox来检查您构建的元素是否与您设计的一样,我建议为开发人员或FireBug插件提供chrome内置工具。 您可以在此处查看代码:http://jsfiddle.net/Nnwbs/2/
var counter = 0;
function create_div(type){
var dynDiv = document.createElement("div");
dynDiv.id = "divid_"+counter;
//dynDiv.class="main";
dynDiv.setAttribute("class", "main");
document.body.appendChild(dynDiv);
question();
if(type == 'ADDTEXTBOX'){
ADDTEXTBOX();
}
counter=counter+1;
}
function question(){
var question_div = document.createElement("div");
//question_div.class="question";
question_div.setAttribute("class", "question") ;
question_div.id = "question_div_"+counter;
var Question = prompt("Enter The Question here:", "");
var node=document.createTextNode(Question);
question_div.appendChild(node);
var element=document.getElementById("divid_"+counter);
element.appendChild(question_div);
}
function ADDTEXTBOX(){
var answer_div = document.createElement("div");
//answer_div.class="answer";
answer_div.setAttribute("class", "answer");
answer_div.id = "answer_div_"+counter;
var answer_tag = document.createElement("input");
answer_tag.id = "answer_tag_"+counter;
answer_tag.setAttribute("type", "text");
answer_tag.setAttribute("name", "textbox");
answer_div.appendChild(answer_tag);
var element=document.getElementById("divid_"+counter);
element.appendChild(answer_div);
}
create_div("ADDTEXTBOX");
关于那种方法,我的意思是div或table,你使用div是正确的,通常建议这样做。
此外,在您修正JS代码修复后,还可以根据需要修改一下css样式。
答案 1 :(得分:0)
如果您使用检查元素使用chrome并找到相应的'div'标签并尝试调整样式(位置)
答案 2 :(得分:0)
尝试将两个Div的绝对位置放在一个可能相对的主div中。
之类的东西#mainDiv {
position:absolute; /* or relative depends how you have it*/
width:80%;
height:100%;
left:10%;
}
#div1 {
position:absolute;
width: 40%;
height:100%;
left:0px;
top:0px;
}
#div2 {
position:absolute;
width: 40%;
height:100%;
right:0px;
top:0px;
}
答案 3 :(得分:0)
这很简单。为了排列两个div,将两个div的位置设为display:inline-block;
display:inline-block;
注意:BOTH div必须具有此属性才能显示在一行中。