在过去的几天里,我遇到了一个问题,我的网站上有这样的iframe:
<iframe src ="http://hokuco.com/cde/user.txt" id ="myIframe"></iframe>
&#13;
但是,consolas看起来很旧,使我的网站看起来像80年代的电脑终端。我尝试在iframe周围使用字体标签,我也尝试更改字体类型,有什么方法可以将iframe文本从consolas更改为arial吗?
答案 0 :(得分:1)
使用PHP:
<强> PHP 强>
<p><?php echo file_get_contents('http://hokuco.com/cde/user.txt'); ?></p>
使用JQuery:
<强> HTML:强>
<p id="text"></p>
<强> JQuery的:强>
$('#text').load("http://hokuco.com/cde/user.txt");