发布网友 发布时间:2022-04-23 14:45
共2个回答
热心网友 时间:2022-04-25 21:07
window.open(_ok_u,'','width=700, height=680, top=100, left=200, toolbar=no, menubar=no, scrollbars=no, location=yes, resizable=no, status=no');
_ok_u 是url 你可以试试 但是这个window.open 必须写在js基层。若不是基层,虽然页面打开了但是你却看不到很明显的效果。得自己寻找,相对于用户体验来说很不爽!
热心网友 时间:2022-04-25 22:25
修改$('mainphoto').onclick = function() {location = this.getAttribute('name');} 为
$('mainphoto').onclick = function() {window.open(this.getAttribute('name'));}试试~