gpt4 book ai didi

javascript - 如何使用$加载文本区域中的文件内容?

转载 作者:行者123 更新时间:2023-12-02 18:23:49 26 4
gpt4 key购买 nike

我想在文本区域中显示样式表内容,用户在选择框中选择样式。样式表位于服务器中,因此我尝试加载并获取两者对我来说不起作用。

<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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com