-1

我正在使用wordpress,我在编辑器上添加了一些按钮我想触发点击它的触发点击但不打开灯箱

例如按钮代码看起来像

<td style="position: relative">
    <a title="Add New Alert" aria-labelledby="content_admin_alert_voice" onClick="return false;" onMouseDown="return false;" class="mceButton mceButtonEnabled mce_admin_alert" href="javascript:;" id="content_admin_alert" role="button" tabindex="-1">
    <img alt="Add New Alert" src="http://www.xyz.com/themes/abc/wp-content/themes/abc/admin/js/../img/icon-alert.png" class="mceIcon"><span id="content_admin_alert_voice" style="display: none;" class="mceVoiceLabel mceIconOnly">
    Add New Alert
    </span>
    </a>
</td>

我正在单击#content_admin_alert,但没有像我们实际单击该按钮那样发生操作

4

1 回答 1

0

我有一段时间没有玩 TinyMCE,但是 onClick 和 onMouseDown 事件返回 false,这基本上会取消任何点击操作。

于 2012-09-11T13:04:13.123 回答