在这里,我试图调用锚标记的 javascript 函数 onclick。当我调用函数 onclick 时,什么都没有发生..
我什至在我的javascript函数中有警报,甚至警报也没有发生。
这是我的代码:
document.writeln('<td><img class="rteImage" src="' + imagesPath + 'code.gif" width="25" height="24" alt="Code" title="Code" onClick="applyTag(document.getElementById("rte1"),"code")"></td>');
javascript函数:
function applyTag(obj, tag)
{
wrapText(obj, '<'+tag+'>', '</'+tag+'>');
alert("hello 1");
};
function wrapText(obj, beginTag, endTag)
{
alert("hello 2");
if(typeof obj.selectionStart == 'number')
{
var start = obj.selectionStart;
var end = obj.selectionEnd;
obj.value = obj.value.substring(0, start) + beginTag + obj.value.substring(start, end) + endTag + obj.value.substring(end, obj.value.length);
}
else if(document.selection)
{
obj.focus();
var range = document.selection.createRange();
if(range.parentElement() != obj) return false;
if(typeof range.text == 'string')
document.selection.createRange().text = beginTag + range.text + endTag;
}
else
obj.value += text;
};
我该如何解决这个问题?