照樣子弄了一下,發(fā)現(xiàn)數(shù)據(jù)格式已經(jīng)換了,想著弄弄看,隨便弄了下,感覺還有搞頭。不過里面有<br />,PHP的字符替換我也不懂,試了下preg_replace發(fā)現(xiàn)只能替換一個,搞笑了。上網(wǎng)猛查資料,發(fā)現(xiàn)大多人說要用函數(shù),汗汗。然后發(fā)現(xiàn)還有str_replace,試了下,總算可以了。
具體方法如下:
在template/你的模板名/read.html
在合適的地方加入:
復(fù)制代碼 代碼如下:
<script>
function run_Code(code)
{
var pop=window.open("about:blank","");
pop.document.writeln(code);
//pop.location.reload();
}
function copy_Code(obj)
{
obj.focus();
obj.select();
document.execCommand('copy');
}
function save_Code(code)
{
var pop=window.open('','_blank','top=10000');
pop.document.writeln(code);
pop.document.execCommand('saveas','','code.html');
pop.close();
}
</script>
我是直接放到頂部了,嘎嘎。
然后到require/bbscode.php文件
找到
復(fù)制代碼 代碼如下:
function phpcode($code){
將
復(fù)制代碼 代碼如下:
$phpcode_htm[$codeid]="<h6 class="quote"><a href="javascript:" onclick="CopyCode(document.getElementById('code$codeid'));">Copy code</a></h6><blockquote id="code$codeid">".preg_replace("/^(<br />)?(.*)/is","\2",$code)."</blockquote>";
改成
復(fù)制代碼 代碼如下:
$phpcode_htm[$codeid]="<form><font color=red>Code:</font><BR><TEXTAREA name ='codeArea' rows='10' style='WIDTH:100%;'>".str_replace("<br />"," ",$code)."</textarea><br> <input type=button class=btn value=運(yùn)行代碼 onclick=run_Code(codeArea.value)> <input type=button class=btn value=復(fù)制代碼 onclick=copy_Code(codeArea)> <input type=button value=保存代碼 class=btn onclick=save_Code(codeArea.value) > <input type=reset value=清除再來 class=btn name=codeAre> <font color=blue size=2>[可以先修改代碼再運(yùn)行]</font><form>";
傳上去覆蓋下:
不過發(fā)現(xiàn)我放了
<script>
alert("111");
</script>
居然彈出兩個框,悶悶,試試其他JS函數(shù),還算正常。
再次更新,已經(jīng)正常了