對不起,問這個問題,但我相信一些其他的Web開發人員可能會發現這個問題的解決方案也很有幫助。jQuery和iframe designMode
雖然在jQuery的
$(function(){
// $("#iframe").designMode = 'on';
// $("#iframe").attr("designMode", "on");
});
代碼不起作用referenecing這一點。我知道我可以很容易地使用javascript參考代碼
iframe.document.designMode = 'on';
但我更喜歡能夠使用JQuery。
您正在使用'#iframe',是不是真的該iframe的ID? –
是
我剛剛發現了一些關於插件的內容,插件是必須的嗎?如果是的話,我不會使用這個.http://www.jquery-plugins.info/view.php?id = 12477 –