是否可以更改css属性?
好的,我有这个代码。
<form action="changecss.php" method="POST">
<table>
<tr>
<td>
which one do you want to change :
</td>
<td>
<select type="text" name="thecolorselect">
<option value="background">Background</option>
<option value="anchor">Achor</option>
<option value="paragraph">Paragraph</option>
</select>
</td>
<td>
Current attributes:
</td>
<td>
<select name="attr">
<!-- here will be listed the current attributes of the item -->
</select>
</td>
<td>
Change into:
</td>
<td>
<select type="text" name="thecolorinput">
<option value="red">Red</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>
</td>
</tr>
</table>
<button name="changecsspropertynow">Change the background color now</button>
</form>
所以现在,当用户点击按钮时,指定的 css 属性应该更改为它在表单上设置的内容,例如:您要更改哪个:背景,当前属性:背景,更改为:蓝色。这只是一个过期,我只是不知道该怎么做,我现在只有想法,没有代码。如果有人在这里提供帮助,请提前感谢您。