我創建了一個表中<td>
顯示我的SPARQL查詢結果,結果確實顯示,但是我希望它的<td>
(結果)點擊它時,顯示一個消息框。眼下額外<td>
顯示在頂部,它僅適用於特定的一個。似乎沒有任何實際結果<td>
點擊時發生:如何使點擊
我的代碼:
<table id="results">
<td class="td" onclick="myFunction()"></td>
</table>
<body>
<script type="text/javascript">
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name
WHERE {
?country rdf:type type:Country108544813.
?country rdfs:label ?country_name.
}
"Limit 1"
].join(" ");
alert("this query: [" + query + "]");
var queryUrl = url + "?query=" + encodeURIComponent(query) + "&format=json";
</body>
的JavaScript代碼我是從網上材料,所以還是讓我的頭周圍,主要使用的是顯示查詢結果。所以,是的答案是真的讚賞和感謝閱讀:)
你可以添加一個單擊事件到你想要活動的td – happymacarts
你可以發佈從你的ajax返回的呈現的html嗎 – happymacarts