m上工作的應用程序,我從遠程服務器動態調用CSS文件和遠程服務器端,我們正在使用node.js文件加載但不應用CSS on頁面。css從遠程node.js添加,但不適用於html頁面
當我嘗試添加除node.js服務器路徑以外的路徑它正常工作,當我從JavaScript添加一些CSS這也適用。
我嘗試以下選項
loadCSS =函數(HREF){ VAR HREF = 「http://192.168.0.64:3001/public/stylesheets/enduserchat.css」; var cssLink = $(「」); $(「head」)。append(cssLink); }; //不工作
$('head').append('http://192.168.0.64:3001/public/stylesheets/enduserchat.css「type =」text/css「/>')// (遠程側的node.js)不工作
$( '頭').append('http://demo23.easternenterprise.com/webrtc/css/chats.css」類型= 「文本/ CSS」 />')//工作(沒有節點js)
function loadjscssfile(filename){ var fileref = document.createElement(「link」); fileref.setAttribute(「rel」,「stylesheet」); fileref.setAttribute(「type」,「text/css」) fileref.setAttribute(「href」,「http://192.168.0.64:3001/public/stylesheets/enduserchat.css」) document.getElementsByTagName(「head」)[0] .appendChild(fileref); } //不工作
Plz幫我解決這個問題。