尝试编写基本的jQuery插件:
<textarea>
<p>Hello World!</p>
</textarea>
$.fn.wysiwyg = function (options) {
var e = $(this).replaceWith("<iframe>");
console.log($(this)[0].contentDocument);
};
$("textarea").wysiwyg();
var e = $(this).replaceWith("<iframe>");
console.log($(this)[0].contentDocument);
我在控制台收到undefined
。如果我为此iframe设置了id属性,并在id
方法中定位console.log
,则效果很好,但我想使用$(this)
。可以做些什么?
答案 0 :(得分:0)
问题是this
仍然会引用textarea
所以
$.fn.wysiwyg = function (options) {
var $frame = $("<iframe>")
var e = $(this).replaceWith($frame);
console.log($frame[0].contentDocument);
};
演示:Fiddle
答案 1 :(得分:0)
试试这个:
$.fn.wysiwyg = function (options) {
var $e = $("<iframe>");
this.replaceWith($e);
console.log($e);
};
$("textarea").wysiwyg();
:: JsFiddle ::