对话框无效

时间:2015-06-29 12:48:21

标签: javascript

在以下代码中,为什么对话框不起作用?

我导入了所有需要的罐子,背后有什么理由或者需要任何罐子?

var val = $('#date').val().trim(); // Remove leading and trailing spaces

// Moved inside click handler
if (!val) { // Check if falsy value
    alert("hi");
    $("#dialog").dialog();//this particular line is not going to work propery
    return false;
}            

1 个答案:

答案 0 :(得分:1)

$("#dialog").dialog();

行不起作用,因为你基本上没有id ="对话框"在您的HTML中(如果HTML的片段是它应该的位置)。

确保HTML中包含与div相似的内容。

<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>

您可以找到有关JqueryUI对话框here

的更多信息