0

我正在尝试在这个可编辑的 div 上添加字符限制。我应该遵循的最佳方法是什么?

NSString *html = [NSString stringWithFormat:@"<html><head><style>img{height:30px; width:auto;}</style></head><body style=\"background-color: transparent; padding:0; margin:0; background-image:url('%@'); background-repeat: no-repeat;\" ><div id=\"edit\" style=\"padding-top:50px; height:270px; padding-bottom:50px; padding-left:20px; padding-right:20px; \"> <div id=\"editable\" autofocus contenteditable=\"true\" style=\"font-size:25px; overflow:scroll; display:block; height:240px; \"></div></div></body></html>", imageURL];
4

1 回答 1

1

您可能可以将 java 脚本与 webview 一起使用,

[webView stringByEvaluatingJavaScriptFromString:@"your script"];

这是一篇有助于限制可编辑 div 中的字符数的帖子。

于 2012-04-24T04:53:59.263 回答