我仍然是PHP的学习者。
我有一个按钮,点击它后会运行一个JavaScript,但是我想让它显示一个警告/弹出窗口,供用户确认是继续还是中止。
我可以在按钮代码的PHP文件中执行该功能吗?
<TD style='text-align:left;padding:0;margin:0;'>
<INPUT type='button' onmouseup="javascript:JS1();" value='JS1'></INPUT>
</TD>
答案 0 :(得分:5)
您需要制作功能并使用// in Load event handler
foreach(var item in myInventory.Items)
{
lstProduct.Items.Add(item);
}
confirm();
并且
<TD style='text-align:left;padding:0;margin:0;'>
<INPUT type='button' onmouseup="myFunction();" value='JS1'></INPUT>
</TD>
答案 1 :(得分:3)
编写代码不是这里的假设。
但是,仍然遵循伪代码和概念应该有效。
步骤:
onclick
属性。onclick
功能中,添加confirmation
弹出窗口。confirm()
,true
会返回yes
,否则会返回false
。现在,只有true
返回confirm()
时才需要继续。
和javascript代码:
<script>
function JS1() {
if (confirm('Your confirmation message')) {
// Write your code of form submit/button click handler.
}
else {
return false;
}
}
</script>
答案 2 :(得分:0)
您是否尝试过bootstrap模式?
https://www.w3schools.com/bootstrap/bootstrap_modal.asp
https://getbootstrap.com/docs/4.0/components/modal/
https://getbootstrap.com/docs/3.3/javascript/
我提供了3个链接。我想这些可能对你有所帮助。做一项研究并不会很难。祝你好运。