作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在文本区域中显示样式表内容,用户在选择框中选择样式。样式表位于服务器中,因此我尝试加载并获取两者对我来说不起作用。
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#sel').change(function() {
jQuery.get('style1.css',function(data) {
jQuery('#cs').html(data);
alert('Load was performed.');
});
// jQuery('#cs').load('style1.css');
});
});
</script>
HTML
<select id="sel">
<option value="style1">style1</option>
<option value="style2">style2</option>
</select>
我收到了“加载已执行”警报,但没有收到文本区域中的内容。
这里#cs
是我的文本区域的ID。
最佳答案
使用 val()
设置文本区域的值,而不是 html()
。
关于javascript - 如何使用$加载文本区域中的文件内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18575985/
我是一名优秀的程序员,十分优秀!