怎么用JS获取到style标签里的内容 10
如下<style>........</style>我要获得<style>里的CSS内容并输出到一个新的页面...
如下
<style>
........
</style>
我要获得<style>里的CSS内容 并输出到一个新的页面 展开
<style>
........
</style>
我要获得<style>里的CSS内容 并输出到一个新的页面 展开
4个回答
展开全部
自己试试吧:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<meta name="generator" content="editplus">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<style>
body{
background-color:red;
}
div.sel{
font-size:15px;
color:green;
}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
window.onload = function(){
var sheet =document.styleSheets[0];
var rules = sheet.cssRules || sheet.rules;//
var rule = rules[0];
alert(rule.selectorText)
alert(rule.style.cssText)
rule = rules[1];
alert(rule.selectorText)
alert(rule.style.cssText)
}
//-->
</SCRIPT>
</head>
<body>
</body>
</html>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<meta name="generator" content="editplus">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<style>
body{
background-color:red;
}
div.sel{
font-size:15px;
color:green;
}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
window.onload = function(){
var sheet =document.styleSheets[0];
var rules = sheet.cssRules || sheet.rules;//
var rule = rules[0];
alert(rule.selectorText)
alert(rule.style.cssText)
rule = rules[1];
alert(rule.selectorText)
alert(rule.style.cssText)
}
//-->
</SCRIPT>
</head>
<body>
</body>
</html>
展开全部
var sheet =document.styleSheets[0];
alert( sheet.cssText);
alert( sheet.cssText);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
貌似不能吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询