主题: 异步调用如何 更改属性? |
作者: 很无奈, 发布日期: 2013-07-31 11:55:35, 浏览数: 2121 |
异步调用如何 更改属性?,我对JS不是太深入,希望指点!
<script>
$(function() {
$('input[name=load]').click(function() {
$.getScript('../kindeditor-min.js', function() {
KindEditor.basePath = '../';
KindEditor.create('textarea[name="content"]'); “《如果在这里加入属性也不行: items : [ 'fontname'] 要如何加属性呢?》”
});
});
$('input[name=remove]').click(function() {
KindEditor.remove('textarea[name="content"]');
});
});
</script>
|