1

它适用于所有浏览器,仅适用于 iPad Safari。如果我在浏览器上模拟 iPad 用户代理,它就可以正常工作。

http://jsfiddle.net/NMcuy/38/embedded/result/

问题是如果我输入文本(添加文本),iPad 中的键盘显示,我可以按键,但它不会显示在可拖动的 div 中。即使是默认文本也保持不变。

我不知道问题是:(

function newText()
{
var note = new Note();
note.id = ++highestId;

var text = document.createElement('textarea');
text.name = "text";
text.setAttribute("onkeyup", "textAreaAdjust(this)");
text.setAttribute("class", "text");
//text.innerHTML = initialText;
note.contentField.appendChild(text);

note.name = note.id + "_text";
note.left = Math.round(Math.random() * 400) + 'px';
note.top = Math.round(Math.random() * 500) + 'px';
note.zIndex = ++highestZ;
note.saveAsNew();
}
4

1 回答 1

1

根据我的研究,这是 iOS 中关于焦点(或延迟焦点)事件的错误/(特定功能)。这是后来被放弃的。

移动 Safari 自动对焦文本字段

于 2013-10-21T07:57:21.543 回答