|
30楼#
发布于:2005-07-20 11:39
这个方法的确不错 |
|
|
31楼#
发布于:2005-07-20 11:39
gzpbx: 不是get element,是get stylesheet <html>
<head>
<title>test</title>
</head>
<body>
<style id="abc-style">
.abc {display: none}
</style>
<h1 class='abc'>test</h1>
<script>
function toggle() {
var style = document.getElementById('abc-style');
style.disabled = !style.disabled;
}
</script>
<P onclick="toggle()">click me </p>
</body>
</html>
work with fx |
|
|
32楼#
发布于:2005-07-20 11:39
明白了,高,有创意,以后就这么用了~
|
|
|
上一页
下一页