FX168财经报社(亚太)讯 美国彭博社周二(10月21日)援引日本媒体报道称,有望成为日本首位女首相的日本执政党党魁高市早苗(Sanae Takaichi)将任命片山皋月(Satsuki Katayama)为日本首位女财务大臣。
element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
