Сообщение от teles
|
как сделать, чтобы вместо message1,message2,message3 выводило exapmple1,example2,example3 ?
|
Полное назначение твоего скрипта не совсем понятно... Но предложу вариант как подправить твой.
<!DOCTYPE html>
<html>
<head>
<!--
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
function func1 (Id, tag, arr) {
if (document.getElementById (Id).childNodes[3]) {
while (document.getElementById (Id).childNodes[3]) {
document.getElementById (Id).removeChild (document.getElementById (Id).childNodes[3])
}
}
else {
for (var i = 0; i <arr.length; i++) {
var gotElem = document.getElementById (Id);
var newElem = document.createElement (tag);
newElem.appendChild (document.createTextNode (arr[i]));
gotElem.appendChild (newElem);
}
}
}
</script>
</head>
<body>
<div id="head" onclick="func1('head','p', ['example1','example2','example3'])">
<h3>Head</h3>
</div>
</body>
</html>