JS的提交留言的问题
发布网友
发布时间:2024-07-02 21:22
我来回答
共1个回答
热心网友
时间:2024-07-23 12:00
<style>
#span{width:150px; height:20px; background:#FFC; border:1px solid #C93; margin-left:15px; position:fixed; top:9px; left:260px; filter:alpha(opacity:50); opacity:0.5; }
#div1{width:300px; height:350px; border:1px solid #036; margin-top:15px;}
</style>
<script>
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
String.prototype.LTrim = function()
{
return this.replace(/(^\s*)/g, "");
}
String.prototype.RTrim = function()
{
return this.replace(/(\s*$)/g, "");
}
window.onload=function()
{
var oTxt=document.getElementById('txt1');
var oBtn=document.getElementById('btn1');
var oDiv=document.getElementById('div1');
oBtn.onclick=function()
{
oTxt.value=oTxt.value.Trim();
if(oTxt.value==""){
alert("请输入内容");
return;
}
oDiv.innerHTML+=oTxt.value+"<br />"
oTxt.value=''
}
oTxt.onkeydown=function(ev)
{
var oEvent=ev||event;
if(oEvent.ctrlKey&&oEvent.keyCode==13)
{
oDiv.innerHTML+=oTxt.value+"<br />"
oTxt.value=''
}
}
}
</script>
<body>
<input id="txt1" type="text" />
<input id="btn1" type="button" value="提交留言" /><span id="span">ctrl+回车提交留言</span>
<div id="div1">
</div>
</body>追问好像ctrl+回车不能吧,会出现问题
追答可以用啊,我这边用谷歌浏览器测试可以用。