1
HTML:的Javascript打印格內容
<div id="printDiv" class="table-responsive">
@Html.Raw(Model.Content)
</div>
<button type="button" onclick="Print()">Print</button>
的Javascript:
function Print() {
alert("working");
$("#printDiv").printThis();
}
當我點擊打印按鈕,我想打印DIV content.However如果我點擊按鈕,我得到下面的JavaScript代碼異常。
Uncaught TypeError: undefined is not a function
我不知道我在哪裏錯過了?
任何幫助將不勝感激。 謝謝。
下載js文件可能會請你幫忙的感謝 –