gpt4 book ai didi

html - Xslt jqueryui未使用的div

转载 作者:行者123 更新时间:2023-11-28 04:34:01 24 4
gpt4 key购买 nike

首先警告,我是 xslt 的极度菜鸟,所以如果这是一个非常愚蠢的问题,请原谅。

我有一个这样的div,

<div id="objectLocked"> This object is locked by another user. Do you want to remove the lock?</div>

在 xsl:template 中创建,用于 jqueryui 对话框,就像这样,

$(function() {
<xsl:if test="abc:hastext($activeschemadeflockedby) and not($activeschemadeflockedby=$currentuserdn)">
$( '#objectLocked' ).dialog({
autoOpen: true,
buttons: [
{
text: "Yes",
click: function()
{
updateLockedby();
$( this ).dialog( "close" );
}
},
{
text: "No",
click: function()
{
$( this ).dialog( "close" );
}
} ],
title: "Object locked",
model: true
});
</xsl:if>

问题是如果 div 没有被使用(if-test 为假)文本“This object is ...”会显示在表单上。

如何避免它被显示?

干杯

哈利

最佳答案

不需要显式定义,只需使用在这个问题中找到的解决方案:Jquery-UI Dialog - on the fly without DIV

关于html - Xslt jqueryui未使用的div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41585577/

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