目前,我正在使用jquery使某个类/跨度可编辑:
$(function(){$('.test').editable({editClass:'tryThis',type:'textarea'})});
这很有效。现在,我想做的是将源放入iFrame(ID = iTarget)。
我现在如何访问此课程?
我试过了:
$(function(){document.getElementById('iTarget').$('.test').editable({editClass:'tryThis',type:'textarea'})});
但这不起作用,我必须遗漏一些东西。
答案 0 :(得分:1)
尝试contents()方法:
$("#iTarget").contents().find(".test").editable({
editClass: "tryThis",
type: "textarea"
});