gpt4 book ai didi

javascript - JS 不工作间接执行

转载 作者:行者123 更新时间:2023-12-03 11:48:34 25 4
gpt4 key购买 nike

我有这个 js 代码,可以通过双击完美运行,但是当我尝试将其合并到另一个文件中时,它不起作用。该代码应该在单击按钮时显示一个弹出窗口。第二种情况的问题是,应该在弹出窗口中显示的内容直接显示在浏览器中,并且单击按钮时什么也没有发生。有人有这方面的经验吗?

<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script>
$(document).ready(function(){
$( "#hello" ).dialog({ autoOpen: false });
$( "#say_it" ).click(function() {
$( "#hello" ).dialog( "open" );
});
});
</script>
</head>
<body>
<p>This page wants to say "Hello!"<br>
Be nice and press the button.</p>
<button id="say_it">Say "Hello!"</button>
<div id="hello" title="Hello World!"><p><font face="Georgia" size="4">
Hey, world, I just said "Hello!"</font></p></div>
</body>
</html>

最佳答案

是一个用样式模拟弹出窗口的库,所以是当前窗口的弹出

使用 Jquery-ui 的内部弹出窗口

$('.some').dialog( "open" );

这是外部弹出窗口

prompt("Please enter your name", "Harry Potter");

另一个

alert('other popup');

还有一个

window.open('popup.html');

关于javascript - JS 不工作间接执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25938345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com