我想要一个脚本,当页面从Arial到Times时,我可以动态地更改字体。这样的事情。有人可以帮我吗?或者任何人都可以为此提供一个脚本吗?
答案 0 :(得分:1)
<?php
$font = "courier";
if(isset($_GET['font'])){
$font = $_GET['font'];
}
?>
<a href="?font=arial">Arial</a> |
<a href="?font=times">Times</a>
<div style="font-family: <?php echo $font; ?>">
the quick brown fox jumped over a lazy dog.
</div>
...虽然这可能是javascript的一项工作,但有些人认为。
答案 1 :(得分:0)
您也可以使用JavaScript
执行此操作<html>
<head>
<title>change font test</title>
</head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".changeFontArial").click(function () {
$("body").css("font-family", "arial");
return false;
});
$(".changeFontTimes").click(function () {
$("body").css("font-family", "Times New Roman");
return false;
});
});
</script>
<body>
<p class="changeFontArial">
Change to Arial</p>
<p class="changeFontTimes">
Change to Times</p>
</body>
</html>