<script type="text/javascript">
function toggle (t) {
if (t.childNodes[0].innerHTML == "+ Šta je to web stranica?") {
t.childNodes[0].innerHTML = "- Šta je to web stranica?";
} else {
t.childNodes[0].innerHTML = "+ Šta je to web stranica?";
}
}
</script>
如何将类或 id 添加到此代码中,就像在此代码中添加一样:
<script>
$("div.toggle").click(function () {
$("p#toggle-1").toggle();
});
</script>