我有一个 jquerymobile 应用程序,它有这个标头代码
@section header
{
@Html.ActionLink("Cancelar", "DocsCancelar", "Docs", new { area = "Documentos" }, new { StrIdDocumento = "", data_icon="delete" })
<h1 id="NombreItem">Ubicacion 50 </h1>
@Html.ActionLink("Grabar", "DocsGuardar", "Docs", new { area = "Documentos",StrIdDocumento = SessionBag.Current.StrIdDocumento }, new { data_icon="check" })
}
我想将文本更改为
<h1>****</h1> tag.
我有这个 jquery 函数
$(data).find('NombreItem').each(function () {
$('#NombreItem').replaceWith($(this).text());
})
但这替换了整个标签,我唯一需要更改的是Ubicacion 50为Ubicacion 70或类似的东西。