0

提交表单后,我想打开某种感谢弹出窗口。我正在使用这个表单脚本: http: //www.mattvarone.com/web-design/simpleform-php-email-script已经有响应但只会出现内联。

请帮忙!非常感谢您的先进!

4

3 回答 3

0

您可以将 jquery 插件用于弹出窗口,然后使用.popup()它包含的功能。您可以从这里下载弹出插件

于 2012-08-03T05:49:32.783 回答
0

您是否尝试向alert()表单的onsubmit事件添加 javascript 函数?如果表单已经调用了一个函数,你可以在最后添加一条警告语句。

于 2012-08-03T04:52:44.777 回答
0

在 javascriptcheckform.js中,您可能需要更改此部分:

if ( passed == false ) 
{
    // responce = alertText.replace('#name', eLabel); // Comment this out
    alert( responce ); // Let just the response be there
    next.focus();
    return false;
}

或者我想说的最好的建议是使用 jQuery 或类似的模态窗口插件:http ://www.queness.com/post/77/simple-jquery-modal-window-tutorial

于 2012-08-03T04:53:03.407 回答