Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hàng đi kèm là hàng ghẻHử ? đi kèm Windows thì sao ?
Với cái script của VBB thì trên IE nó sử dụng div, trên Mozilla nó sử dụng iframe.Em có chắc mấy cái WYSIWYG dùng IFRAME không ? anh thì cho là nó dùng DIV. Tất cả iframe đều có thể được thay bằng DIV.
Hay, câu này đúng nơi đúng chốn quá =D> )Hàng đi kèm là hàng ghẻ
Ừ, anh cũng tham khảo 1 số editers khác, có cái nó còn dùng luôn cả <textarea> nữa cơ.Với cái script của VBB thì trên IE nó sử dụng div, trên Mozilla nó sử dụng iframe
Em load thử cái này về ngó xem có phải không nhé: http://dviet86.free.fr/download/WYSIWYG.zipĐặng Trần Hiếu đã viết:Textarea??? Textarea thì làm rì có chuyện nó paste ảnh vào trong được.
function createWysiwygControls() {
var textareas = document.getElementsByTagName("textarea");
for (var foo = 0; foo < textareas.length; foo++) {
if (textareas[foo].className.indexOf("wysiwyg") > -1) {
var wysiwyg = document.createElement("div");
var control = document.createElement("iframe");
wysiwyg.appendChild(control);
textarea.parentNode.replaceChild(wysiwyg, textareas[foo]);