'<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");