我正在使用jQuery和JavaScript。我有一個調用JavaScript函數的onclick事件。我如何在jQuery中提取function_A和function_B的參數?jQuery中的JavaScript函數參數
這是最好的方法嗎?
我需要在JavaScript單擊後執行Ajax調用。使用jQuery有沒有任何性能問題?
我的代碼:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
//Here need to extract the JavaScript function arguments
var id1=from_javascript_function_A
var id2=from_javascript_function_B
var link1=from_javascript_function_A
var link2=from_javascript_function_B
//
</script>
</head>
<body>
<a href='#' onclick=javascript:function_A('first',1)>link1</a>
<a href='#' onclick=javascript:function_B('second',2)>link2</a>
</body>
</html>