最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to apply CSS to document.write()? - Stack Overflow

programmeradmin4浏览0评论

I have a program that will use Javascript to 'print' a value to the screen using 'document.write()'. The value printed is an integer. I am looking to be able to use CSS to apply styling to this integer that is being printed out. Below is some truncated sample code of what I have tried doing, but it isn't working (the program just quits:

var number = 5 //just for an example
document.write('<p id="jstext"' + number + '</p>')

and this is the CSS code I'm using:

#jstext {
    text-align: center;
    font-size: 90px;
}

Thanks

I have a program that will use Javascript to 'print' a value to the screen using 'document.write()'. The value printed is an integer. I am looking to be able to use CSS to apply styling to this integer that is being printed out. Below is some truncated sample code of what I have tried doing, but it isn't working (the program just quits:

var number = 5 //just for an example
document.write('<p id="jstext"' + number + '</p>')

and this is the CSS code I'm using:

#jstext {
    text-align: center;
    font-size: 90px;
}

Thanks

Share Improve this question asked Aug 24, 2015 at 7:03 ethanzhethanzh 1432 gold badges5 silver badges20 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 6

That's wrong. See the correction:

var number = 5; //just for an example
//------------^ // Not sure but ; is a must in some places.
document.write('<p id="jstext">' + number + '</p>')
//----------------------------^

You forgot a closing > here.

Working snippet below:

#jstext {
  text-align: center;
  font-size: 90px;
}
<script>
var number = 5; //just for an example
//------------^ // Not sure but ; is a must in some places.
document.write('<p id="jstext">' + number + '</p>')
//----------------------------^
</script>


UPDATE: Do not use the previous method.

The above method is totally wrong. It will remove all the event handlers and totally damage the DOM. A better way is to use:

document.body.appendChild(document.createElement('p'));
document.querySelector("body p:last-child").id = "jstext";
document.querySelector("#jstext").innerHTML = number;

Snippet

#jstext {
  text-align: center;
  font-size: 90px;
}
<script>
var number = 5; //just for an example
//------------^ // Not sure but ; is a must in some places.
document.body.appendChild(document.createElement('p'));
document.querySelector("body p:last-child").id = "jstext";
document.querySelector("#jstext").innerHTML = number;
</script>

you can use es6 Template Literals : document.write(<p id="jstext"> ${ number }</p>)

发布评论

评论列表(0)

  1. 暂无评论