鼠標點擊 文本可複製

Q.selectInput = function(){ // 點擊產品名稱,測試意見,或者其餘須要支持複製的DIV。可經過移動光標進行選擇複製 $('#centerFrame').contents().find('.productname,.rsTestOpinion,.copyselect').mousedown(function(e){  // 若是按下的是左鍵,而且沒有輸入框。則生成輸入框 if(1 == e.which && !$('input', this).length) {  var obj = $('<input type="text" style="width:99%" onfocus="this.select()" value="'+$.trim($(this).text())+'"/>'); $(this).html(obj); // 輸入框失去焦點時, DIV恢復回原來樣式 obj.blur(function(){ $(this).parent().html($(this).val()); }).keydown(function(event){ // ctrl+c ctrl+a 左右箭頭選擇 if (event.ctrlKey&&(event.keyCode==67||event.keyCode==65) || event.keyCode==37 || event.keyCode==39) { return true; }; return false; }); // 用setTimeout函數解決火狐瀏覽器沒法自動調用ONFOCUS事件 setTimeout(function(){obj.focus();}, 0); } }); };
相關文章
相關標籤/搜索