你好javascript,你好李焕英电影免费版高清在线观看
用javascript编写一个按钮,点击左键弹出你好,右键弹出右键禁用,2秒钟之后关闭窗口
html
我们一直强调做网站、网站建设对于企业的重要性,如果您也觉得重要,那么就需要我们慎重对待,选择一个安全靠谱的网站建设公司,企业网站我们建议是要么不做,要么就做好,让网站能真正成为企业发展过程中的有力推手。专业网站制作公司不一定是大公司,创新互联公司作为专业的网络公司选择我们就是放心。
head
script
function judgeMouseButton(e){
var e=window.event||e;//获取事件对象
var value=e.button;
if(value==2||value==3){
alert('右键禁用');
setTimeout("closeThis();",2000);
}else{
alert('你好');
}
}
function closeThis(){
window.close();
}
/script
/head
body
input type='button' onmousedown="judgeMouseButton()"
/body
/html
javascript求救,在页面是点左键弹出\"你好\",点右键弹出\"对不起\"
script
if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() {
event.cancelBubble = true
event.returnValue = false;
return false;
}
if (window.Event) document.captureEvents(Event.MOUSEUP);
function c() {
if (event.button == 1)
{
alert("你好");
return false;
}
else
{
alert("对不起");
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.onmousedown = c;
document.oncontextmenu = nocontextmenu;
/script
JavaScript当输入框为空时弹出“请输入内容”,当不为空时弹出栏内容+“你好”!该如何写?
function chk_test(str){
if (str==""){
alert("请输入内容")
}else{
alert(str+"你好!")
}
}
上面的是一个JS的自定函数,你把它放到JS的标记中
下面是你需要修改的表单中参数
input id="login_1" type="text" name="login_1"input type="button" value="确定" onclick="chk_test(document.getElementById('login_1').value)"
当前标题:你好javascript,你好李焕英电影免费版高清在线观看
当前链接:http://myzitong.com/article/dsdhopj.html