這裏是我的代碼:(jQuery的)jQuery插件平變化
<script src="./minified/jquery.sceditor.bbcode.min.js"></script>
<script> var loadCSS = function(url, callback){
var link = document.createElement('link');
link.type = 'text/css';
link.rel = 'stylesheet';
link.href = url;
link.id = 'theme-style';
document.getElementsByTagName('head')[0].appendChild(link);
var img = document.createElement('img');
img.onerror = function(){
if(callback) callback(link);
}
img.src = url;
}
$(document).ready(function() {
var initEditor = function() {
$(".new_text").sceditor({
plugins: 'bbcode',
style: "./minified/jquery.sceditor.default.min.css"
});
};
$("#theme").change(function() {
var theme = "./minified/themes/" + $(this).val() + ".min.css";
$(".new_text").sceditor("instance").destroy();
$("link:first").remove();
$("#theme-style").remove();
loadCSS(theme, initEditor);
});
initEditor();
});
</script>
此代碼阿賈克斯不工作後的變化的功能。我的HTML代碼是在這裏: 這裏是Ajax響應:
<div id="txtHint" style="margin-left: 160px;">
<textarea class="new_text" name="about_builder" id="about_builder" style="height:200px;width:600px;">
<?php echo $row_ab['about_builder']; ?>
</textarea></div>
問題是,文本區域的插件不工作阿賈克斯之後。
你是什麼意思「這個代碼阿賈克斯改變功能後不工作」?你期望發生什麼,會發生什麼?有沒有錯誤? –
您需要在ajax調用之後再次綁定您的'sceditor',或者使用委託來確保新添加的元素被自動綁定。 – jeroen
是的,sceditor在ajax之前工作。但在阿賈克斯sceditor不工作後。只有文本區域顯示 –