設定拖拽事件,獲取拖拽內容

2022-07-21 06:51:08 字數 3095 閱讀 7539

設定dragenter

設定dragdrop

using

system;

using

system.collections.generic;

using

system.componentmodel;

using

system.data;

using

system.drawing;

using

system.linq;

using

system.text;

using

system.text.regularexpressions;

using

system.threading.tasks;

using

system.windows.forms;

namespace

private

void form1_load(object

sender, eventargs e)

//}#endregion

textbox1.dragdrop +=textbox1_dragdrop;

}private

void textbox1_dragdrop(object

sender, drageventargs e)

private

void c_dragenter(object

sender, drageventargs e)

//////

獲得網頁格式的資訊

/// ///

///public

static

string

gethtmlcontent(idataobject data)

else

return"";

}//////

獲得文字內容

/// ///

///public

static

string

getstringcontent(idataobject data)

else

return"";}}

}

view code

擷取網頁內容的正則

擷取日期

/// ///

///public

static

string getdate(string

txt)

//////

只獲得如的部分

獲取當前拖拽的內容(拖拽文字)

/// ///

///public

static

string gettext(string

text)

//////

/// ///

///public

static

string getlink(string

text)

//////

/// ///

///public

static

string getrefpage(string

text)

//////

/// ///

///public

static

string replacesubsup(string

text)}}

view code

JS 拖拽事件

這裡寫的是乙個原生js實現拖拽的效果,首先 1 實現拖拽的三大事件,是要首先清楚的 onmousedown 滑鼠按下的時候 onmousemove 滑鼠移動的時候 onmouseup 滑鼠鬆開的時候 2 給目標元素加上onmousedown時間,記錄滑鼠按下的時候,滑鼠距離所在元素的位置 就是滑鼠距...

vue 拖拽事件

darg.vue position relative 定位 top 10px left 10px width 200px height 200px background 666 設定一下背景 data methods document.onmouseup e computed 當然,我們可以將它繫結...

js拖拽事件

doctype html utf 8 js拖拽事件 title page style head page div body html 這裡寫的是乙個原生js實現拖拽的效果,首先 實現拖拽的三大事件,是要首先清楚的 onmousedown 滑鼠按下的時候 onmousemove 滑鼠移動的時候 onm...