这是我的代码,我想显示一个警告,如果单击按钮后文本框为空,则填写:
$route['logout'] = 'Login/logout';
答案 0 :(得分:0)
您可以将if
条件用于不同的警报以达到您的目的。据我所知,您需要2个警报。 1.如果用户单击提交按钮并且输入为空且2.如果输入值不为空......
function myFunction() {
var input = $('#inputId');
if(input.length === 0){
alert("Please correct the error");
} else {
alert("Thank you for subscribing");
}
}
希望这会有所帮助:)
答案 1 :(得分:0)
使用javascript,您可以执行以下操作:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
InitBrowser();
}
public ChromiumWebBrowser browser;
private void InitBrowser()
{
CefSettings cfsettings = new CefSettings();
cfsettings.IgnoreCertificateErrors = true;
Cef.Initialize(cfsettings);
browser = new ChromiumWebBrowser("https://portal.aoacloud.com.tw/desk_auth_index.php");
browser.Dock = DockStyle.None;
this.browser.Size = new Size(321, 421);
this.browser.Location = new Point(259, 37);
this.Controls.Add(browser);
}
}

function myFunction() {
var inputData = document.getElementById('inputValue');
if (inputData && inputData.value) {
alert(inputData.value);
} else {
alert("fill in the data")
}
}