if(document.getElementsByClassName) { getElementsByClass = function(classList, node) { return (node || document).getElementsByClassName(classList) } } else { getElementsByClass = function(classList, node) { var node = node || document, list = node.getElementsByTagName('*'), length = list.length, classArray = classList.split(/\s+/), classes = classArray.length, result = [], i,j for(i = 0; i < length; i++) { for(j = 0; j < classes; j++) { if(list[i].className.search('\\b' + classArray[j] + '\\b') != -1) { result.push(list[i]) break } } } return result } } function addEvent(elem, type, handler){ if (elem.addEventListener){ elem.addEventListener(type, handler, false) } else { elem.attachEvent("on"+type, function() { handler.call(elem)}) } } function preprocess($this) { for (var i = 0; i < liElements.length; i++) { if ($this != liElements[i]) { var style; if (window.getComputedStyle) { style = window.getComputedStyle(liElements[i], null); } else { style = liElements[i].currentStyle; } if (style.listStyleImage != 'url("http://localhost/html/plus.gif")') { var li = liElements[i].getElementsByTagName("li"); for (var k = 0; k < li.length; k++) li[k].style.display = "none"; liElements[i].style.listStyleImage = 'url("http://localhost/html/plus.gif")' } } } }
function processLi(event) {
preprocess(this);
event = event || window.event; var target = event.target || event.srcElement; if (this == target) { var childs = this.getElementsByTagName('li'); var style; for (var i = 0; i < childs.length; i++) { if (childs[i].style.display == "none") { childs[i].style.display = "block"; if (i == childs.length - 1) this.style.listStyleImage = "url(minus.gif)" } else { childs[i].style.display = "none"; if (i == childs.length - 1) this.style.listStyleImage = "url(plus.gif)" } } } }
function processFirstList() {
preprocess(this);
var list1 = document.getElementById("list1"); var list2 = document.getElementById("list2"); var style; if (window.getComputedStyle) { style = window.getComputedStyle(list1, null); } else { style = list1.currentStyle; } if (style.display == "none") { list2.style.display = "none"; list1.style.display = "block"; } }
function processSecondList() {
preprocess(this);
var list1 = document.getElementById("list1"); var list2 = document.getElementById("list2"); var style; if (window.getComputedStyle) { style = window.getComputedStyle(list2, null); } else { style = list2.currentStyle; } if (style.display == "none") { list1.style.display = "none"; list2.style.display = "block"; } }
addEvent(document.getElementById("menu1"), "click", processFirstList); addEvent(document.getElementById("menu2"), "click", processSecondList); var liElements = getElementsByClass("hasUl");
for (var i = 0; i < liElements.length; i++) { addEvent(liElements[i], "click", processLi); var li = liElements[i].getElementsByTagName('li'); for (var k = 0; k < li.length; k++) li[k].style.display = "none"; } </script> <!-- </bc> --></td></tr></table>
Все отлично работает !
Подскажите как мне при нажатие на Item 4.1 заменить в плеере ссылку src="mms://media.eurotv.lv/eurotv" на любую другую и что бы плеер начал воспроизводить другую ссылку без перезагрузки страниц!
src="mms://media.eurotv.lv/eurotv" /*- вот ее нужно заменить на другой поток видео, и что бы плеер начал воспроизводить видео без перезагрузки страницы*/
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Незнайка
Вот хороший человек написал мне скрипт:
Все отлично работает !
Подскажите как мне при нажатие на Item 4.1 заменить в плеере ссылку src="mms://media.eurotv.lv/eurotv" на любую другую и что бы плеер начал воспроизводить другую ссылку без перезагрузки страниц!
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.