发布网友 发布时间:2022-04-23 04:34
共4个回答
热心网友 时间:2022-04-24 03:35
只读本来就可以传值的,只不过不能修改而已,不过select没有只读这个属性,只能js来控制只读了,你可以加 onchange="return false" 来阻止改值,但是还是能传值的
热心网友 时间:2022-04-24 04:53
<!-- 禁止选择文本: -->
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
热心网友 时间:2022-04-24 06:27
你是不是说,不能别人不能复制你的内容?或另存为。是的话,自己重新组合关键字,百度一下吧。
热心网友 时间:2022-04-24 08:19
html页面为只读是什么意思呀?