我發(fā)現(xiàn)在我的大學(xué)網(wǎng)站上有一個添加課程的按鈕。在哪里可以addNewCourseToStudent()使用 google chrome 的檢查元素找到功能詳細(xì)信息。<button onclick="addNewCourseToStudent()">Add</button>
2 回答

白衣染霜花
TA貢獻(xiàn)1796條經(jīng)驗 獲得超10個贊
內(nèi)聯(lián)處理程序幾乎肯定會引用全局變量,因此您可以打開控制臺并記錄該變量,這將為您提供函數(shù)位置及其代碼:
const foo = 'some code';
function fn() {
console.log('fn running');
}
// when you have the function name, console.dir it
// to find its location:
console.dir(fn);
// console.log it to find its code:
console.log(fn);
您可以單擊右側(cè)的鏈接,[[FunctionLocation]]
轉(zhuǎn)到“源”面板中定義該函數(shù)的位置。

慕尼黑8549860
TA貢獻(xiàn)1818條經(jīng)驗 獲得超11個贊
右鍵單擊檢查標(biāo)簽或按鈕,
在開發(fā)人員工具中選擇“事件監(jiān)聽器”選項卡,如下所示
展開click
它不會顯示為 onclick 它將顯示為click
- 2 回答
- 0 關(guān)注
- 148 瀏覽
添加回答
舉報
0/150
提交
取消