YUI 2 编辑器 - iframe 中的 JavaScript 事件
我可以通过单击按钮轻松地用 span 标签包裹文本选择;
this.toolbar.on(
'testClick',
function(o)
{
var sel = myEditor._getSelection();
myEditor.execCommand('inserthtml', '<span class="test">' + sel + '</span>');
alert(myEditor);
},
myEditor, true);
我想要实现的目标是将 iframe 中的跨度类(“测试”)绑定到 JavaScript 事件;
testEvent = function {
alert('Hello World!')
}
如果可能的话有什么想法吗?
I can easily wrap a text selection with span tag through a button click like this;
this.toolbar.on(
'testClick',
function(o)
{
var sel = myEditor._getSelection();
myEditor.execCommand('inserthtml', '<span class="test">' + sel + '</span>');
alert(myEditor);
},
myEditor, true);
What I am trying to achive is to bind this span class ('test') within the iframe to a javascript event;
testEvent = function {
alert('Hello World!')
}
Any ideas if that's possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答我自己的问题。
Answering my own question.