我正在尋找建議和代碼示例來獲取文件並將其加載到文本區域中。讓我多給一點細節。從鏈接加載CSS/JS文件到文本框
我的代碼搜索一個文件,並在該文件中有一個額外的CSS文件數組。我正在尋找一種方法來獲得CSS文件加載到文本區域,一旦你點擊一個按鈕。
每個文件包含此:
$CSS = array(file.css);
現在,我怎麼能得到:
<a href="file.css">CSS</a>
或
<button onclick="myFunction()">CSS</button>
要加載在這裏:
<textarea id="filecontent" name="filecontent" cols="80" rows="10">".$filecontent."</textarea>
好吧 'http://www.site.com/ index.php' 'http:// www.site.com/assets/css/file.css' – Gromstone
另外請記住這將來自不同的文件,所以$ CSS = array(file.css)將是相同的。但並不是所有的鏈接都是一樣的。 – Gromstone
其實這裏是鏈接 'https:// secure.site.com/forms/administration/first-year/index.php'的更好樣本 'https://secure.site.com/forms/hatternet/deland/index.php' – Gromstone