HTML Open Link in New Fixed Size Window

后端 未结 1 1301
春和景丽
春和景丽 2021-02-02 16:04

I am trying to add a pop up confirmation window for a contact us form I am making. I want a new html page to to open up in a new window that has a fixed size and is centered in

相关标签:
1条回答
  • 2021-02-02 16:39
    <a href="#" onClick="window.open('yourpage.htm','pagename','resizable,height=260,width=370'); return false;">New Page</a><noscript>You need Javascript to use the previous link or use <a href="yourpage.htm" target="_blank">New Page</a></noscript>
    
    0 讨论(0)
提交回复
热议问题