|
d:\west.syant\wwwroot\disc\static\js\forum_viewthread.js
function copyThreadUrl(obj, bbname) {
>>>>d:\west.syant\wwwroot\disc\static\js\common.js<<<<<
function setCopy(text, msg) {
>>>>d:\west.syant\wwwroot\disc\static\js\common_extra.js<<<<<
function _setCopy(text, msg){
function syantCopyText(text){
var textareaC = document.createElement('textarea');
textareaC.setAttribute('readonly', 'readonly'); //设置只读属性防止手机上弹出软键盘
textareaC.value = text;
document.body.appendChild(textareaC); //将textarea添加为body子元素
textareaC.select();
var res = document.execCommand('copy');
document.body.removeChild(textareaC);//移除DOM元素
return true;
}
|
|