Hola,
necesito saber como crear saltos de línea en XHTML 1.0 Transitional con javascript.
He probado haciendolo como se hace en HTML:
EJ:
Código:
<script type="text/javascript">
document.write("quiero poner un salto de linea<br/>");
</script>
Pero no pasa el validador XHTML 1.0 Transitional, me da el siguiente error:
document type does not allow element "br" here
Aqui el código completo:
Código:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> --><!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>titulo</title>
<meta http-equiv="content-type" content="application/xhtml+xml;charset=utf-8" />
<meta http-equiv="content-style-type" content="text/css" />
</head>
<body>
<div>
<script type="text/javascript">
document.write("hola<br/>");
</script>
</div>
</body>
</html>
¿Álquiern que sepa hacerlo?