href属性中的javascript函数

时间:2016-05-18 11:54:51

标签: javascript windows cordova ckeditor href

我试图在" href"中调用javascript函数。锚标记的属性,但我尝试这样做时收到错误。

HTML:

 <a href="javascript:void('Cut')"</a>

控制台显示以下错误:

APPHOST9602: 'javascript:' is an invalid attribute value and will be ignored.  Don’t use 'javascript:' URIs in the local context.

windows cordova webapp中会出现此错误。

重要提示:我无法更改或删除href属性,因为它是由外部库(CKEditor)添加的。

2 个答案:

答案 0 :(得分:2)

您无法调用此类函数

pointerArray[ElementToSaveAt]

您必须以“JavaScript events”

之类的方式调用该函数
 <a href="javascript:void('Cut')"></a>

答案 1 :(得分:1)

<a href="#" onclick="foo"></a>

怎么样?
function foo(event){
   event.preventDefault();
   // do something more
}