已采纳回答 / Damon_Salvatore
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" Content="text/html; charset=utf-8" /><title>javascript</title><style type="text/css">body {font-size: 12px;}#txt {height: 400px;width: 600px;border: #333 ...
2019-02-13
最新回答 / Damon_Salvatore
除了之前同学所说的 confirm拼错了之外,if 条件语句语法错误<...code...>还有一些小建议,仅供参考。if 后的条件会自行判断是否为 true,所以并不需要 yourif==true,直接 if (yourif) 就可以关于 “==” 与 “===”可以花点时间看一些参考资料,毕竟 js 还是比较乱的,隐式转换偶尔还是很坑爹的可以先处理 false 的情况,当所有 false 都处理之后,剩下的自然是 true 的情况,这样可读性会比较好(个人观点)
2019-02-12
已采纳回答 / 慕丝2791062
加一个判断条件即可,在你的代码基础上增减了一些东西:<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow(...
2019-02-11
最新回答 / weixin_慕盖茨5207985
我试了一下,这个可行<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow(){var a=confirm(...
2019-02-11
已采纳回答 / 完美丶沉睡
window.open("_blank","width=400px,height=500px,menubar=no,toolbar=no");要改成 window.open(oppps, "_blank","width=400px,height=500px,menubar=no,toolbar=no");你没告诉函数该打开那个网址,默认第一个参数为网址。
2019-02-10
最新回答 / 慕粉1471436281
function openWindow() { var lz=confirm("打开网址吗?"); if(lz==true) { var lzz; lzz=prompt("网址",'http://www.imooc.com/'); window.open(lzz,'_blank','width=400px,height=500px,menubar=no,toolbar=no'); } }
2019-02-09