我想尝试对话"好的"按钮,用于执行重播功能以在新窗口中打开网页。但是这个命令似乎没有点击按钮。有人可以重新安排代码,如果你能解释一下我会非常感激。谢谢! P.S代码在head标签内。
<script>
function jobbig() {
var tag = $('<div>JOBBIGT</div>');
tag.dialog({
modal: true,
buttons: {
Okay: function () {
flag = 1;
function replay() {
if (flag == 1) {
open("file:///C:/Users/elev/Desktop/index.html", "New_Window");
}
}
}
}
});
}
</script>
答案 0 :(得分:0)
尝试,
<script>
function replay()
{
if (flag==1)
{
window.open("file:///C:/Users/elev/Desktop/index.html");
}
}
function jobbig() {
var tag = $('<div>JOBBIGT</div>');
tag.dialog({
modal: true, buttons:
{
Okay: function() {
flag = 1;
replay();
}
}
});
}
</script>