我是新來的asp.net。我調用Iframe src throw table row javscripct單擊事件。 (即的onclick = 「返回loadPhaseWiseChart(」 DGSET00025 「);」)IFrame:頁面回傳或刷新iframe src
我的代碼: -
<tr height="25" id="row3" onclick="return loadPhaseWiseChart("DGSET00025");" bgColor="#e1f2fe">
<td>
<tr>
jQuery代碼: -
function loadPhaseWiseChart(Asset_Discription) {
document.getElementById('IframeChart1').src = "PhaseOneChart.aspx?assetdiscription=" + Asset_Discription;
}
當我點擊一行,我的頁面獲取回帖或刷新。我想避免頁面刷新或回發行單擊事件。 我如何做到這一點。任何幫助將不勝感激。