怎么用JS在DIV里写点带样式的汉字
发布网友
发布时间:2022-05-14 03:15
我来回答
共3个回答
热心网友
时间:2024-02-23 04:37
<style type="text/css">
<!--
.STYLE1 {
font-family: "方正综艺简体";
font-size: 16px;
color: #E67015;
}
-->
</style> // 这个是在head里的 样式
<span class="STYLE1" ......
哦 看错你的问题了 是JS里面吧?
content.filters[0].apply()
content.innerHTML = "<span style='color:"fffff";font-size:"20pt";filter: revealTrans(Transition=12, Duration=3)'>"+message"</span>"
content.filters[0].play()
热心网友
时间:2024-02-23 04:37
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
#message{
border:1px solid #FF6600;
color:#006600;
font-size:26px;
font-weight:bold;
}
</style>
</head>
<body>
<div id="message"></div>
<script type="text/javascript">
$(document).ready(function(){
$("#message").text("注意事项");
});
</script>
</body>
</html>
我用JQUERY写了一个,注意先要引用一下JUQERY
(北京八方永信教育)
热心网友
时间:2024-02-23 04:38
document.getElementById("message").innerHTML="<p align=\"center\"><strong><span style=\"COLOR: #0000ff; FONT-SIZE: 14pt\">注意事项</span></strong></p>";
<p align=\"center\"><strong><span style=\"COLOR: #0000ff; FONT-SIZE: 14pt\">注意事项</span></strong></p> 试试