-1

如果此 div 包含此消息,我希望能够重定向我的页面:

<DIV class=FinalMessageDialog id=DialogFinalMessage><DIV>
The form has been closed.
</DIV></DIV>

提前致谢,如果有任何不同,我会尝试在 SharePoint Web 部件中完成此操作,并且我已经尝试过此代码,但它不起作用。

$(document).ready(function(){
if($('#DialogFinalMessage').children().length>0)
{
 window.location.href = "<Desired destination page URL>";
}
 });
4

2 回答 2

2

像这样的东西应该工作:

if ($('#DialogFinalMessage>div').text() === 'The form has been closed.') {
    window.location.href = "<Desired destination page URL>";
}
于 2013-08-02T09:39:22.380 回答
1
$(document).ready(function(){
    if($('#DialogFinalMessage > div').html().length>0){
        window.location.href = "<Desired destination page URL>"
   }
});

http://jsfiddle.net/BtUFa/2/

应该给出一个不错的 404,因为它已重定向

于 2013-08-02T09:38:38.600 回答