Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个布局,我必须根据主页中选择的条件应用不同的外部样式表。条件是我必须根据主页中选择的用户从主页的下拉列表中选择一个用户我有动态加载外部 css 文件并将其应用于布局。我使用的是 Jquery。我怎么能在 jquery 中做到这一点。
你的意思是这样的:
$(document).ready(function() { $("#yourSelectId").change(function() { if($(this).val() == "something") { //load css var styleUrl = "some_stylesheet_url.css"; $('<link rel="stylesheet" type="text/css" href="'+styleUrl+'" >') .appendTo("head"); } }); });