Сообщение от ralexeya
|
Как написать скрипт, который при нажатии на "кнопка" будет проверять содержимое верхнего li и, если он равен "первая строка", то выполняется функция temp()
|
Так и написать...
<!DOCTYPE html>
<html>
<head>
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
function test(){
var txt=document.querySelector('#items > li').innerHTML;
if (txt=='первая строка') {
temp();
};
};
function temp() {
alert('Ok');
};
</script>
</head>
<body>
<ul id="items">
<li>первая строка</li>
<li>вторая строка</li>
<li>третья строка</li>
<li>четвертая строка</li>
</ul>
<button onclick="test();">кнопка</button>
</body>
</html>