找到了一个代码:- <img src="图片地址" width="图片宽度" height="图片高度">
- <p align="left"><input value="点击查看原图" style="border-width: 8px; background-color: rgb(按钮10进位颜色代码 如203,125,205);" onclick="window.open('图片地址', 'Sample', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width=窗口宽度,height=窗口高度,directories==1,scrollbars=1,resizable=1'
- )" name="Input" type="button"></p>
复制代码 是不是要在common.js文件中的- //添加文章中的图片链接
- function addImgLink(divID) {
- var msgarea = getbyid(divID);
- if(msgarea) {
- var imgs = msgarea.getElementsByTagName('img');
- for (i=0; i<imgs.length; i++) {
- if (imgs[i].parentNode.tagName.toLowerCase() != 'a') {
- imgs[i].title = '点击图片可在新窗口打开';
- imgs[i].style.cursor = 'pointer';
- imgs[i].onclick = function() { window.open(this.src); }
- }
- }
- }
- }
复制代码 中的window.open(this.src); 这里加?怎样加呢?我试了下没反应啊~ |