安装 Dreamweaver 会影响浏览器运行脚本的方式吗?
Could installing Dreamweaver affect how your browser runs scripts?
我刚刚在几个小时前发帖 并得到了有用的回复,两个代码都以我需要的方式显示了输出,但是在编辑我的代码之后(甚至尝试将工作代码复制粘贴到 Dreamweaver 中)我无法在我的笔记本电脑上复制成功的结果。
所以我想把它放在 JSFiddle 上,因为我的台式电脑已经登录到我的电子邮件,我在那里创建了 JSFiddle 帐户并且 运行 代码成功,现在我尝试 运行在我的笔记本电脑上使用相同的 fiddle (link) 并且它不会显示输出(就像 Dreamweaver 不会一样)。两台计算机之间的唯一区别(软件方面)是笔记本电脑安装了 Dreamweaver 2015 而台式机没有。
我很困惑,你们中的任何人 运行 以前遇到过类似的问题吗?有什么我想念的吗?所有建议表示赞赏。
供参考(而且因为我显然不能 link 不发布代码就去 JSFiddle),这是我正在尝试开始工作的代码。
<script type="text/javascript">
console.clear();
function showDetails(event) {
console.log(event);
var x = event.srcElement;
var val = x.options[x.selectedIndex].text;
var t = event.srcElement.selectedOptions[0].text;
document.getElementById("Details").value = t;
}
var el = document.getElementById("slctOrder");
el.addEventListener("change", showDetails, false);
</script>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Hot Buns </title>
</head>
<div>
<h2> Welcome to Hot Buns </h2>
<h3> Ham can we bee'f service? </h3>
</div>
<div>
<h2> Place an order </h2>
</div>
<form method="get" id="frmOder">
<select id="slctOrder">
<option hidden selected="selected" value="0"> please select one of today's specials </option>
<option value="1"> Last of the Mo-jicama </option>
<option value="2"> Cheesus Is Born Burger </option>
<option value="3"> Beets of Burden Burger </option>
<option value="4"> Paranormal Pepper Jack-tivity Burger </option>
</select>
<output id="Details" />
</form>
</body>
</html>
是的,known issue 发生在某些 Dreamweaver 安装中。
Dreamweaver 更改了注册表中对加载 CSS 等有一定影响的内容。this 回答应该可以帮助您修复它。
我刚刚在几个小时前发帖
所以我想把它放在 JSFiddle 上,因为我的台式电脑已经登录到我的电子邮件,我在那里创建了 JSFiddle 帐户并且 运行 代码成功,现在我尝试 运行在我的笔记本电脑上使用相同的 fiddle (link) 并且它不会显示输出(就像 Dreamweaver 不会一样)。两台计算机之间的唯一区别(软件方面)是笔记本电脑安装了 Dreamweaver 2015 而台式机没有。
我很困惑,你们中的任何人 运行 以前遇到过类似的问题吗?有什么我想念的吗?所有建议表示赞赏。
供参考(而且因为我显然不能 link 不发布代码就去 JSFiddle),这是我正在尝试开始工作的代码。
<script type="text/javascript">
console.clear();
function showDetails(event) {
console.log(event);
var x = event.srcElement;
var val = x.options[x.selectedIndex].text;
var t = event.srcElement.selectedOptions[0].text;
document.getElementById("Details").value = t;
}
var el = document.getElementById("slctOrder");
el.addEventListener("change", showDetails, false);
</script>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Hot Buns </title>
</head>
<div>
<h2> Welcome to Hot Buns </h2>
<h3> Ham can we bee'f service? </h3>
</div>
<div>
<h2> Place an order </h2>
</div>
<form method="get" id="frmOder">
<select id="slctOrder">
<option hidden selected="selected" value="0"> please select one of today's specials </option>
<option value="1"> Last of the Mo-jicama </option>
<option value="2"> Cheesus Is Born Burger </option>
<option value="3"> Beets of Burden Burger </option>
<option value="4"> Paranormal Pepper Jack-tivity Burger </option>
</select>
<output id="Details" />
</form>
</body>
</html>
是的,known issue 发生在某些 Dreamweaver 安装中。
Dreamweaver 更改了注册表中对加载 CSS 等有一定影响的内容。this 回答应该可以帮助您修复它。