我有一个简单的问题,已经问过很多遍了,但是我解决不了。我只想从html组件部分调用一个javascript文件来运行命令,然后单击一个按钮。
但是,当我单击按钮时,什么也没有发生。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<p id="counter">Loading button click data.</p>
<button id="buttonForScrapping">begin to scrap!</button>
<script>
function startScrap(){
jQuery.ajax({
type:'get',
url:'../../../scrapping.js',
data:[],
dataType:'json',
success: function(rs)
{},
failure : function(rs)
{}
});
}
</script>
</body>
scrapy命令是python命令,所以我认为我需要进行ajax调用以在服务器上运行它。
翻翻过去那场雪
红糖糍粑
相关分类