它适用于所有浏览器,仅适用于 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();
}