我有这个脚本,当我点击一个按钮时会执行。单击按钮时,下面的文本将折叠,当我再次单击按钮时,文本将被展开并查看。
但是,我想要的恰恰相反。当页面自行加载时,我想隐藏/折叠文本,仅在单击按钮时显示。
我怎样才能做出改变?
JS
function toggleMe(a) {
var e = document.getElementById(a);
if (!e)
return true;
if (e.style.display == "none") {
e.style.display = "block"
} else {
e.style.display = "none"
}
return true;
}
HTML
<input type="button" ="return toggleMe('para1')" value="Toggle">
<br>
<p id="para1">
some text................ </p>