已采纳回答 / 慕数据1488196
if(myMessage=="true"){ 这行 true不应该加双引号去掉就可以了还有你的targetWeb是定义在if中的,我想问会不会在else中算作没有定义
2019-01-19
最新回答 / lvial
具体的说不太清楚 这是改正的 您参考一下 有错误的话希望理解!<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript"> function ...
2019-01-19
实际上只是简单的操作的话,直接写出 document.getElementById("con").style.display = "none"; 的形式也是可以正常操作的。虽然提交之后会提示你代码错误就是了= =
2019-01-18
function openWindow( ){ if(confirm('确认打开新网页?'){window.open('http://www.imooc.com', '_blank', width = 400, height = 500)}else{return false}
最新回答 / qq_与闻悖悖
请你仔细看看你的变量定义在哪?是不是每一个方法内,最后取消你没有定义 var mytxt=document.getElementById("txt"),你让他怎么用mytxt.removeAttribute("style"),你可以直接定义全局变量,或者在取消方法内定义这个变量。
2019-01-17
正确代码
function openWindow()
{
var newButton=confirm("打开");
if(newButton==true)
{
var url="http://www.imooc.com/";
var qd=prompt("打开网址",url);
if(qd{window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no');}else{} } }
function openWindow()
{
var newButton=confirm("打开");
if(newButton==true)
{
var url="http://www.imooc.com/";
var qd=prompt("打开网址",url);
if(qd{window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no');}else{} } }
最新回答 / Mr_three
我今天找到了这个问题的答案,我一般用谷歌浏览器,一些属性不支持是因为谷歌不支持。可以参考这个链接,操作一下 http://www.w3help.org/zh-cn/causes/BX1053
2019-01-16
window.open('http://www.imooc.com','_blank','width=300','height=400','top=100','left=0')是这样吧
2019-01-16