我正在使用带有 MVC 的 .net 框架 4.0。
我在我的页面中包含了 HTMLBox(jquery 插件),因为我需要一个 WYSWYG 编辑器来控制我的文本区域控件。
我有一个名为 Instruction 的局部视图,其中我将 Textarea 控件声明为:
@Html.TextAreaFor(model => model.Instruction, new {@cols = 80, @rows = 10 })
在 Ajax 调用中,我在页面上填充了这个 Partial 视图。像这样:
function EditInstruction(progId)
{
var getUserUrl = '@Url.Action("")';
var courseType = $('input:radio[name=CourseType]:checked').val();
var acadYr = $("#AcadYear").val();
var sem = $("#Sem").val();
$.ajax({
url: '@Url.Action("EditInstruction", "CustomizeInstructionsAndCheckList")',
data: { progId: progId, acadYr: acadYr, sem: sem, courseType: courseType },
cache: false,
type: "get",
// callback handler that will be called on success
success: function (response, textStatus, jqXHR) {
$("#PartailLoadForCheckList").html($(response));
callAjaxCallsForCascade(getUserUrl.toString());
TextEditorForDisplay();
},
// callback handler that will be called on error
error: function (jqXHR, textStatus, errorThrown) {
},
// callback handler that will be called on completion
// which means, either on success or error
complete: function () {
}
});
}
This is the code for TextEditorForDisplay(), where I initialize my HtmlBox
function TextEditorForDisplay() {
mybox = $("#Instruction").htmlbox({
toolbars:[
[
// Cut, Copy, Paste
"separator","cut","copy","paste",
// Undo, Redo
"separator","undo","redo",
// Bold, Italic, Underline, Strikethrough, Sup, Sub
"separator","bold","italic","underline","strike","sup","sub",
// Left, Right, Center, Justify
"separator","justify","left","center","right",
// Ordered List, Unordered List, Indent, Outdent
"separator","ol","ul","indent","outdent",
// Hyperlink, Remove Hyperlink, Image
"separator","link","unlink","image"
],
[// Show code
"separator","code",
// Formats, Font size, Font family, Font color, Font, Background
"separator","formats","fontsize","fontfamily",
"separator","fontcolor","highlight",
]
],
icons: 'default',
skin: 'blue',
success: function () { alert("Successfully posted"); },
error: function () { alert("Error posting"); }
});
}
The problem I face is that, the HtmlBox works only when it is Loaded first and does not work for the subsequent ajax calls.
这是我得到的错误:TypeError: d.iframe.contentWindow is null
谁可以帮我这个事?
谢谢