我嵌入了一个jQuery对话框(https://jqueryui.com/dialog/)
我的问题是图标“x”不会显示:
但我不知道为什么。 我包含示例中的完整代码并将其嵌入到我的网站中。任何想法,这可能是什么?
代码
<html lang="de">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.min.css">
</head>
<body>
<a href="javascript:openDialog()">Open Dialog</a>
<div id="dialog-confirm" title="Title" style="display: none;">
<p>Text</p>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script type="text/javascript">
function openDialog() {
alert
$( "#dialog-confirm" ).dialog({
modal: true,
buttons: {
"Close": function() {
$( this ).dialog( "close" );
}
}
});
};
</script>
</body></html>
答案 0 :(得分:0)
看看已经实现了jquery,jquery ui井
这是负责显示x
的人cl::Buffer newBuf = cl::Buffer(op::CLManager::getInstance(gpuID)->getContext(), CL_MEM_READ_WRITE, sizeof(float) * 200);
cl::Buffer part1 = cl::Buffer((cl_mem)((float*)(newBuf.get())+0),true); // OK
cl::Buffer part2 = cl::Buffer((cl_mem)((float*)(newBuf.get())+100),true); // SEGFAULT
这是jquery和jquery ui
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
寻找样式和路线
答案 1 :(得分:0)
我找到了解决方案。 图像位于文件夹“images”=&gt;错误。 正确=&gt; “css / images”