jquery改变div文本

前端之家收集整理的这篇文章主要介绍了jquery改变div文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
'<div id="'+div_id+'" class="widget" style="height:60px;width:110px">\n\
            <div class="widget-head ui-widget-header" style="cursor:move;height:20px;width:130px">'+
         '<span id="'+span_id+'" style="float:right; cursor:pointer" class="dialog_link ui-icon ui-icon-newwin ui-icon-pencil"></span>'  +
          dialog_title+'</div></div>

我有一个使用上述字符串构建的div。经过一些处理之后,我必须改变上述div中的dialog_title。我正在尝试使用以下代码

$('#'+div_id+' .widget-head').text("new dialog title");

虽然这会更改对话框title..it删除用于打开对话框的span元素。

我尝试使用一个带有新对话框标题的字符串的ReplaceWith方法。但是,显示NaN的标题和跨度虽然可见无法被点击(事件被禁用?)

如何更改文本而不失去跨度和单击它的能力。

提前致谢。

解决方法

标题放在自己的范围内。
<span id="dialog_title_span">'+dialog_title+'</span>
$('#dialog_title_span').text("new dialog title");
原文链接:https://www.f2er.com/jquery/182542.html

猜你在找的jQuery相关文章