text 为 你要抓取的id 比如 文本的等;
要自己做个事件触发此方法;
function refer(){
var textValue = document.getElementById("text")
if(textValue.value == ""){
document.getElementById("msg").style.display ="none"
}
else{
document.getElementById("msg").style.display =""
}
}
可以的,设置div属性为不可用。定义一个div:
<div id ="pannel" style ="width:100%height:100%overflow:hidden"></div>;
设置下div的属性
<script src='jquery.js'></script>
<script>
$(function(){
$("pannel").attr("disabled",true)
})
</script>