用JS怎么获得ID以AA开头或以AA结尾的控件内容?
用JQuery
开头$("*[id^=AA]")
结尾$("*[id$=AA]")
这样能返回一组对象,前面的*表示所有元素,你可以视情况修改,如果能保证返回的是一个对象,可以直接$("*[id^=AA]").val()或者$("*[id^=AA]").html(),否则需要遍历:
$("*[id^=r]").each(function(){
alert($(this).html());
//alert($(this).val());
});
利用Javascript取和设FCKeditor值也是非常容易的,如下:
// 获取编辑器中HTML内容
function getEditorHTMLContents(EditorName) {
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.GetXHTML(true));
}
// 获取编辑器中文字内容
function getEditorTextContents(EditorName) {
var oEditor = FCKeditorAPI.GetInstance(EditorName);
return(oEditor.EditorDocument.body.innerText);
}
// 设置编辑器中内容
function SetEditorContents(EditorName, ContentStr) {
var oEditor = FCKeditorAPI.GetInstance(EditorName) ;
oEditor.SetHTML(ContentStr) ;
}