我从网上获取一个插件来创建动态标签。我试图根据我的意愿调整代码,但我需要创建一个动态ID。代码如下:
function addNewStaticTab()
{
$.addDynaTab({
tabID : 'addstatictab',
type : 'html',
html : "<table class='fontStreet' width='100%'> <tr> <td align='left' class='td-label'>Intitulé*</td> <td width='2%'> </td> <td align='left' width='150'><input type='text' class='input-middle' required></td> <td> <figure onclick='makeCaptionAppear('figcaptionRosterInt');' style='position:relative; padding:0px; margin:0px;' ><img src='img/inter.png' id='buttonCriteresLeft'><figcaption class='figcaptionRoster2' id='figcaptionRosterInt' onMouseOut='makeCaptionDisappear('figcaptionRosterInt');'>Aide:<br> Exemples d'intitulés :<br>Projet, développement commercial, développement international, En création, prestataire, apporteur d'affaires, recherche d'emploi/opportunités, etc.</figcaption></figure> </td> </tr> </table>",
params : {},
tabTitle : 'NOUVELLE ACTIVITÉ'
});
}
id为&#34; figcaptionRosterInt &#34;我需要将其更改为动态ID。你可以看到我打电话给fonction打开另一个需要ID的div弹出窗口,但即使窗口在其他标签中是相同的,id也必须是唯一的..
我不知道你是否理解,对不起我的英语。
提前感谢您的回答。
答案 0 :(得分:1)
如果我理解了您的问题,您可以通过向parameter
添加addNewStaticTab
来实现此目的
function addNewStaticTab(parameter_id)
{
$.addDynaTab({
tabID : 'addstatictab',
type : 'html',
html : "<table class='fontStreet' width='100%'> <tr> <td align='left' class='td-label'>Intitulé*</td> <td width='2%'> </td> <td align='left' width='150'><input type='text' class='input-middle' required></td> <td> <figure onclick='makeCaptionAppear('+ parameter_id +');' style='position:relative; padding:0px; margin:0px;' ><img src='img/inter.png' id='buttonCriteresLeft'><figcaption class='figcaptionRoster2' id='+ parameter_id +' onMouseOut='makeCaptionDisappear('+ parameter_id +');'>Aide:<br> Exemples d'intitulés :<br>Projet, développement commercial, développement international, En création, prestataire, apporteur d'affaires, recherche d'emploi/opportunités, etc.</figcaption></figure> </td> </tr> </table>",
params : {},
tabTitle : 'NOUVELLE ACTIVITÉ'
});
}
功能
remove("/home/test/foo.txt")