このようなリンクがあります。
<a href="delete.php?id=1" class="delete">Delete</a>
ユーザーがそれをクリックした場合。確認がポップアップし、ユーザーが[はい]をクリックした場合にのみ、実際のURLに移動します。
これがデフォルトの動作を妨げる可能性があることを知っています
function show_confirm()
{
var r=confirm("Are you sure you want to delete?");
if (r==true) { **//what to do here?!!** }
}
$('.delete').click(function(event) {
event.preventDefault();
show_confirm()
});
しかし、確認後、そのリンクを続行するか、そのリンクにajax投稿を送信するにはどうすればよいですか?
あなたはそれをすべてワンクリックで行うことができます:
$('.delete').click(function(event) {
event.preventDefault();
var r=confirm("Are you sure you want to delete?");
if (r==true) {
window.location = $(this).attr('href');
}
});
または、クリックした要素を関数に渡すことでそれを行うことができます。
function show_confirm(obj){
var r=confirm("Are you sure you want to delete?");
if (r==true)
window.location = obj.attr('href');
}
$('.delete').click(function(event) {
event.preventDefault();
show_confirm($(this));
});
これを理解するのに少し時間がかかったので、自分の解決策を投稿すると思いました。
$('.delete').click(function(e){
if(confirm('Are you sure?')){
// The user pressed OK
// Do nothing, the link will continue to be opened normally
} else {
// The user pressed Cancel, so prevent the link from opening
e.preventDefault();
}
}
間違った方法を確認することを考えていました。確認すると、サイトが自動的に開かなくなり、ユーザーの入力を待ちます。つまり、基本的にはpreventDefaultをelseに移動する必要があります。
つまり、[キャンセル]をクリックした場合にのみリンクが開かないようにします。これにより、たとえばtarget = "_ blank"命令がある場合など、リンクが通常どおりに機能するようになります。
_function show_confirm(url){
var r=confirm("Are you sure you want to delete?");
if (r==true){
location.top.href = url;
}
}
$('.delete').click(function(event) {
event.preventDefault();
show_confirm($(this).attr('href'));
});
_
Ajaxを使用する場合は、_location.top.href = url;
_を$.get(url);
に置き換えることができます。
function show_confirm(elem)
{
var r=confirm("Are you sure you want to delete?");
if (r==true) {
window.location.href = elem.href;
}
}
$('.delete').click(function(event) {
event.preventDefault();
show_confirm(this)
});
関数show_confirmのコードを最適化するには、以下を使用してみてください:
function show_confirm(obj){
if(confirm("Are you sure you want to delete?")) window.location = obj.attr('href');
}
これは短い形式です:
$('.delete').click(function(){return confirm("Are you sure you want to delete?")});
ダウンロード/リンクの確認のためにウェブサイトで使用しています。
あなたはできる
function show_confirm()
{
if(confirm("Are you sure you want to delete?")){
//make ajax call
}else{
//no ajax call
}
}
$('.delete').click(function() {
if (confirm('Are you sure?')) {
$.post($(this).attr('href'), function() {
// Delete is OK, update the table or whatever has to be done after a succesfull delete
....
}
}
return false;
}
アラート/確認を使用したい場合、これが最良の方法です(私は Bootstrap Confirmation または bootbox を使用することを好みます):
$('.confirm-delete').click( function( event ) {
if ( !confirm('Are you sure?') ) event.preventDefault();
});