ヘッダーが空のようにスタイルがあります
<style>
.cls{
}
</style>
クリック例で動的に変更したい
<style>
.cls{
font-size: 15px;
font-family : Arial, Verdana;
border: 1px solid blue;
background-color: yellow;
}
</style>
ここに私のコードがありますhttp://jsfiddle.net/nyf7T/
<script>
function changeCSS () {
var style = 'font-size: 15px;'
+ 'font-family : Arial, Verdana;'
+ 'border: 1px solid blue ;'
+ 'background-color: yellow;';
alert(style);
}
</script>
<style>
.cls{
}
</style>
<div>
<table style="margin:5px;">
<tr>
<td class="cls">
abcd
</td>
</tr>
</table>
</div>
<a href="#" onclick="changeCSS();">Setstyle</a>
その方法を教えてください。