我有一个 java 脚本函数,它onblur()
在身体的事件上触发。
function start() {
var el = document.getElementById('divWarning');
el.style.visibility = "visible";
}
开火:
<body onblur="start()">
它在每一页上都运行良好。除了我在其中包含 CKEditor 的那个。
<CKEditor:CKEditorControl ID="txtDescriptiveAnswer" runat="server" Width="75%" UIColor="#54b2ff" BorderColor="#007cdf" BorderWidth="2px" Toolbar="Source|-|Preview
Bold|Italic|Underline|Strike|-|Subscript|Superscript
JustifyLeft|JustifyCenter|JustifyRight|JustifyBlock
NumberedList|BulletedList|-|Outdent|Indent|Blockquote|Styles|Format|Font|FontSize|TextColor|BGColor|Maximize" BasePath="../ckeditor">
</CKEditor:CKEditorControl>
每次我点击 CKeditor 写东西时,onblur 事件就会触发。我知道 CkEditor 有一个 IFrame 我认为这是问题所在。但我不知道如何仅跳过 CkEditor 的模糊事件。
请帮忙。
谢谢。