最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - Enable and disable css file dynamically using javascript? - Stack Overflow

matteradmin6PV0评论

I am very new to javascript. I am creating a multilingual website. It contains rtl and ltr languages. I have two css for those to languages. When user change his language I want to load respective css file. Is it possible in this way ? If not suggest any alternative way.

I am very new to javascript. I am creating a multilingual website. It contains rtl and ltr languages. I have two css for those to languages. When user change his language I want to load respective css file. Is it possible in this way ? If not suggest any alternative way.

Share Improve this question edited May 24, 2016 at 14:26 madhan kumar asked May 24, 2016 at 13:22 madhan kumarmadhan kumar 1,6082 gold badges27 silver badges38 bronze badges 8
  • why do you want to do this? are you unable to edit the html to remove the files you don't want? – Cruiser Commented May 24, 2016 at 13:27
  • Actually, I am trying to change css file dynamically. – madhan kumar Commented May 24, 2016 at 13:28
  • 2 @madhankumar you cannot do that. But you can always change the CSS individual properties dynamically – Ahs N Commented May 24, 2016 at 13:31
  • 1 You can't disable css files with javascript. The proper way of doing it would be to add/remove css classes with javascript and/or use css media queries to display certain rules when you want to. Google CSS Media Queries and Changing CSS Class with javascript/jquery. – Dan Weber Commented May 24, 2016 at 13:36
  • 2 see this answer: stackoverflow./questions/25827756/… – Cruiser Commented May 24, 2016 at 13:37
 |  Show 3 more ments

1 Answer 1

Reset to default 5

Is posible enable and disable css stylesheet with javascript. A example: http://plnkr.co/0exLXB

function del_style() {
    document.getElementById("styles").disabled=true;
}

function add_style() {
    document.getElementById("styles").disabled=false;
}

I think you could adapt the code for your site

Post a comment

comment list (0)

  1. No comments so far