javascript – 如何在Jquery对话框上设置内容

前端之家收集整理的这篇文章主要介绍了javascript – 如何在Jquery对话框上设置内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$("#note_content").dialog({
            title: "Note",modal: true,width:'auto',height:'auto',resizable:false,open: function(){
                var note_text = $('#note_content').attr('note_text');
     }
}

在我的代码中我尝试将note_text设置为对话框的内容,任何想法我怎么能这样做?

解决方法

您应该在对话框中有一个内容占位符,例如:
<div id="noteContent" title="Basic dialog">
   <p id="contentholder"> This is the default dialog which is useful for displaying information. The dialog window can be moved,resized and closed with the 'x' icon.</p>
</div>

$("#note_content").dialog({
    title: "Note",open: function(){
        var note_text = $('#note_content').attr('note_text');
       $("#contentholder").val(note_text)
    }
}

您已将note_text分配给此行中的变量:

var note_text = $('#note_content').attr('note_text');

但是,您没有将note_text变量分配给占位符.

原文链接:https://www.f2er.com/jquery/159067.html

猜你在找的jQuery相关文章