这个在没选中时怎么加弹出提示?
如果没选中,点击下一步时 弹出: 请您选择注册类型
if(!defined('InEmpireCMS'))
{
exit();
}
?>
回复讨论(解决方案)
<?phpif(!defined('InEmpireCMS')){exit();}?><br><table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder"> <form name="ChRegForm" id="ChRegForm" method="GET" action="index.php" onsubmit="return false;"> <tr class="header"> <td height="25"><div align="center">选择注册类型</div></td> </tr> <tr bgcolor="#FFFFFF"> <td width="70%" height="25"><table width="100%" border="0" cellspacing="1" cellpadding="3"><?phpwhile($r=$empire->fetch($sql)){$checked='';if($r[groupid]==$user_groupid){$checked=' ';//}?> <tr> <td height="23"><input type="radio" name="groupid" value="<?=$r[groupid]?>"<?=$checked?>> <?=$r[groupname]?> </td> </tr><?php}?> </table></td> </tr> <tr bgcolor="#FFFFFF"> <td height="25"> <input type="submit" name="button" onclick="fsubmit()" value="下一步"></td> </tr> </form> <script type="text/javascript"> function fsubmit(){ var is_checked = 0; var groupid = document.getElementById('ChRegForm').groupid; for(var i in groupid){ if(groupid[i].checked==true){ is_checked = 1; break; } } if(is_checked==1){ document.getElementById('ChRegForm').submit(); }else{ alert('请您选择注册类型'); } } </script></table>
回二楼,按你做的,提示语正常了,但选中了也提示, 还得改改
确定 ChRegForm只有一排?有其他同名的没
还有楼上写的form里有return false怪怪的
不考虑 php,直接写 html 代码,你认为该如何加提示?
form 的 onsubmit 回调和 input type=submit onclick 回调返回假时,表单就不会被提交
原来的$checked=' ';// 是$checked=' checked';// 默认选中状态 现在默认不选中,
ChRegForm只有一排
原来的代码无需改动,在你愿意的地方加入一下代码
<script>document.forms['ChRegForm'].onsubmit = function() { var radio = this['groupid']; var n = 0; for(var i=0; i<radio.length; i++) if(radio[i].checked == true) n++; if(n == 0) alert('请您选择注册类型'); return n != 0;}</script>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
