按钮指针游标在确认框中

时间:2012-02-03 10:41:50

标签: javascript

当我使用下面的javascript确认时:

         function showConfirm(){

     var confirmMsg=confirm("Make sure that your details are correct, once you proceed after this stage you would not be able to go back and change any details towards your Session." + "\n" + "\n" + "Are you sure you want to Proceed?" + "\n" );

}

如何在“确定”和“取消”按钮上显示指针光标?

由于

1 个答案:

答案 0 :(得分:1)

  

如何在“确定”和“取消”按钮上显示指针光标?

你做不到。如何呈现确认框以及使用哪些游标,完全取决于浏览器。

如果你想要那种控制,你需要使用custom confirm dialog - 注意那些要求你改变你的代码工作方式,使用回调函数来捕捉“OK”或“取消” “点击活动。