想要实现如图批量插入功能,但是这个文本框却无法编辑,请问这是为什么呢,代码如下
var markWithRedBg = {
text: "批量插入 <input type='text' onClick='asd()' style='width:20px;height:5px' value='1' />",
name: "markWithRedBg",
command: "markWithRedBg",
workArea: "viewport"
};
spread.contextMenu.menuData.push(markWithRedBg);
function asd(){
var e = window.event;
e.preventDefault();//阻止事件往下进行
e.stopPropagation();//阻止事件往下进行
e.stopImmediatePropagation();
}
|